@netless/fastboard-ui 0.3.7 → 0.3.8

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
@@ -82,24 +82,24 @@ declare interface PlayerControlProps {
82
82
  declare class PlayerControl extends SvelteComponentTyped<PlayerControlProps> {}
83
83
 
84
84
  declare interface ReplayFastboardProps {
85
- player?: FastboardPlayer | null;
86
- theme?: Theme;
87
- language?: Language;
88
- containerRef?: (container: HTMLDivElement | null) => void;
89
- }
90
- declare class ReplayFastboard extends SvelteComponentTyped<ReplayFastboardProps> {
85
+ player?: FastboardPlayer | null;
86
+ theme?: Theme;
87
+ language?: Language;
88
+ containerRef?: (container: HTMLDivElement | null) => void;
91
89
  }
92
90
 
91
+ declare class ReplayFastboard extends SvelteComponentTyped<ReplayFastboardProps> {}
92
+
93
93
  declare interface FastboardProps {
94
- app?: FastboardApp | null;
95
- theme?: Theme;
96
- language?: Language;
97
- containerRef?: (container: HTMLDivElement | null) => void;
98
- config?: FastboardUIConfig;
99
- }
100
- declare class Fastboard extends SvelteComponentTyped<FastboardProps> {
94
+ app?: FastboardApp | null;
95
+ theme?: Theme;
96
+ language?: Language;
97
+ containerRef?: (container: HTMLDivElement | null) => void;
98
+ config?: FastboardUIConfig;
101
99
  }
102
100
 
101
+ declare class Fastboard extends SvelteComponentTyped<FastboardProps> {}
102
+
103
103
  interface UI {
104
104
  /** render UI to div */
105
105
  mount(div: Element, props?: FastboardProps): UI;