Skip to content

Commit

Permalink
fix: strict css type (#2573)
Browse files Browse the repository at this point in the history
Co-authored-by: Peter Savchenko <[email protected]>
Co-authored-by: Ilya Maroz <[email protected]>
  • Loading branch information
3 people authored Mar 13, 2024
1 parent bb2047c commit b355f16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ui/toolbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ export default class Toolbox extends EventsDispatcher<ToolboxEventMap> {

/**
* CSS styles
*
* @returns {Object<string, string>}
*/
private static get CSS(): { [name: string]: string } {
private static get CSS(): {
toolbox: string;
} {
return {
toolbox: 'ce-toolbox',
};
Expand Down

0 comments on commit b355f16

Please sign in to comment.