@spash/frontlib 0.0.10 → 0.0.12
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/main.d.ts +3 -3
- package/dist/main.js +462 -460
- package/package.json +2 -2
package/dist/main.d.ts
CHANGED
|
@@ -89,7 +89,7 @@ export declare interface Session {
|
|
|
89
89
|
bookingProviderData?: string;
|
|
90
90
|
gameSheetUrl: string;
|
|
91
91
|
competitionStage: string;
|
|
92
|
-
|
|
92
|
+
videoUploadEnable?: boolean;
|
|
93
93
|
competition: Competition;
|
|
94
94
|
sport: Sport;
|
|
95
95
|
ngtvSessionType?: SessionType;
|
|
@@ -139,7 +139,7 @@ export declare interface SessionInput {
|
|
|
139
139
|
ngtvSessionType?: string;
|
|
140
140
|
bookingProvider?: string;
|
|
141
141
|
bookingProviderData?: string;
|
|
142
|
-
|
|
142
|
+
videoUploadEnable?: boolean;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
145
|
export declare interface SessionPlayer {
|
|
@@ -279,7 +279,7 @@ export declare const useHelper: ({ t, router }?: {
|
|
|
279
279
|
|
|
280
280
|
export { useI18n }
|
|
281
281
|
|
|
282
|
-
export declare const useIdle: (time: number) => {
|
|
282
|
+
export declare const useIdle: (time: number, callback?: () => void) => {
|
|
283
283
|
isIdle: Ref<boolean>;
|
|
284
284
|
};
|
|
285
285
|
|