@spash/frontlib 0.0.15-beta.5 → 0.0.15
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/assets/style.css +11 -1
- package/dist/main.d.ts +4 -0
- package/dist/main.js +14836 -12028
- package/package.json +1 -1
package/dist/main.d.ts
CHANGED
|
@@ -195,6 +195,7 @@ export declare interface SessionEvent {
|
|
|
195
195
|
ngtvSessionTeam: SessionTeam;
|
|
196
196
|
ngtvSessionPlayer: SessionPlayer;
|
|
197
197
|
secondNgtvSessionPlayer: SessionPlayer;
|
|
198
|
+
ngtvSessionEventType: SessionEventTypes;
|
|
198
199
|
}
|
|
199
200
|
|
|
200
201
|
export declare interface SessionEventInput {
|
|
@@ -213,6 +214,9 @@ export declare interface SessionEventTypes {
|
|
|
213
214
|
type: string;
|
|
214
215
|
name: string;
|
|
215
216
|
color: string;
|
|
217
|
+
duration?: number;
|
|
218
|
+
imageUrl?: string;
|
|
219
|
+
position?: number;
|
|
216
220
|
}
|
|
217
221
|
|
|
218
222
|
export declare interface SessionInput {
|