@netless/fastboard-ui 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -7,15 +7,15 @@ interface SvelteAction<T = void> {
7
7
  destroy?: () => void;
8
8
  };
9
9
  }
10
- declare type Theme = "light" | "dark";
11
- declare type Language = "en" | "zh-CN";
12
- declare type IconType = "normal" | "disable";
13
- declare type GenericIcon<K extends string, E extends string = IconType> = {
10
+ type Theme = "light" | "dark";
11
+ type Language = "en" | "zh-CN";
12
+ type IconType = "normal" | "disable";
13
+ type GenericIcon<K extends string, E extends string = IconType> = {
14
14
  [key in K]: {
15
15
  [kind in E]: string;
16
16
  };
17
17
  };
18
- declare type I18nData<T extends string> = Record<Language, Record<T, string>>;
18
+ type I18nData<T extends string> = Record<Language, Record<T, string>>;
19
19
  interface ToolbarConfig {
20
20
  apps?: {
21
21
  enable?: boolean;