@yimou6/common-ui 1.11.5 → 1.11.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/cdn/index.cdn.js +17 -17
- package/cdn/index.cdn.js.map +1 -1
- package/cdn/index.cdn.mjs +17 -17
- package/cdn/index.cdn.mjs.map +1 -1
- package/cdn/index.css +1 -1
- package/es/components/tenant-enterprise/index.d.ts +13 -0
- package/es/components/tenant-enterprise/src/tenant-enterprise.d.ts +6 -2
- package/es/components/tenant-enterprise/src/tenant-enterprise.mjs +5 -1
- package/es/components/tenant-enterprise/src/tenant-enterprise.mjs.map +1 -1
- package/es/components/tenant-enterprise/src/tenant-enterprise.vue.d.ts +13 -0
- package/es/components/tenant-enterprise/src/tenant-enterprise.vue2.mjs +334 -2
- package/es/components/tenant-enterprise/src/tenant-enterprise.vue2.mjs.map +1 -1
- package/es/components/tzj-player/index.d.ts +357 -368
- package/es/components/tzj-player/src/ctyun-player.vue.d.ts +7 -46
- package/es/components/tzj-player/src/easyPlayer.vue.d.ts +7 -46
- package/es/components/tzj-player/src/easyPlayer.vue2.mjs +164 -693
- package/es/components/tzj-player/src/easyPlayer.vue2.mjs.map +1 -1
- package/es/components/tzj-player/src/tzj-player.vue.d.ts +357 -368
- package/es/components/tzj-player/src/tzj-player.vue2.mjs +10 -7
- package/es/components/tzj-player/src/tzj-player.vue2.mjs.map +1 -1
- package/es/components/tzj-player/src/xgplayer.vue.d.ts +102 -0
- package/es/components/tzj-player/src/xgplayer.vue.mjs +6 -0
- package/es/components/tzj-player/src/xgplayer.vue.mjs.map +1 -0
- package/es/components/tzj-player/src/xgplayer.vue2.mjs +103 -0
- package/es/components/tzj-player/src/xgplayer.vue2.mjs.map +1 -0
- package/es/components/tzj-player/src/yunzhiyanPlayer.vue.d.ts +7 -46
- package/es/types.d.ts +2 -0
- package/lib/components/tenant-enterprise/index.d.ts +13 -0
- package/lib/components/tenant-enterprise/src/tenant-enterprise.d.ts +6 -2
- package/lib/components/tenant-enterprise/src/tenant-enterprise.js +5 -1
- package/lib/components/tenant-enterprise/src/tenant-enterprise.js.map +1 -1
- package/lib/components/tenant-enterprise/src/tenant-enterprise.vue.d.ts +13 -0
- package/lib/components/tenant-enterprise/src/tenant-enterprise.vue2.js +334 -2
- package/lib/components/tenant-enterprise/src/tenant-enterprise.vue2.js.map +1 -1
- package/lib/components/tzj-player/index.d.ts +357 -368
- package/lib/components/tzj-player/src/ctyun-player.vue.d.ts +7 -46
- package/lib/components/tzj-player/src/easyPlayer.vue.d.ts +7 -46
- package/lib/components/tzj-player/src/easyPlayer.vue2.js +163 -692
- package/lib/components/tzj-player/src/easyPlayer.vue2.js.map +1 -1
- package/lib/components/tzj-player/src/tzj-player.vue.d.ts +357 -368
- package/lib/components/tzj-player/src/tzj-player.vue2.js +4 -1
- package/lib/components/tzj-player/src/tzj-player.vue2.js.map +1 -1
- package/lib/components/tzj-player/src/xgplayer.vue.d.ts +102 -0
- package/lib/components/tzj-player/src/xgplayer.vue.js +10 -0
- package/lib/components/tzj-player/src/xgplayer.vue.js.map +1 -0
- package/lib/components/tzj-player/src/xgplayer.vue2.js +107 -0
- package/lib/components/tzj-player/src/xgplayer.vue2.js.map +1 -0
- package/lib/components/tzj-player/src/yunzhiyanPlayer.vue.d.ts +7 -46
- package/lib/types.d.ts +2 -0
- package/package.json +1 -1
- package/theme-default/i-tzj-player.css +1 -1
- package/theme-default/index.css +1 -1
|
@@ -1478,15 +1478,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1478
1478
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
1479
1479
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
1480
1480
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
1481
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
1482
1481
|
}> & {}>;
|
|
1483
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
1482
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
1484
1483
|
slots: Readonly<{
|
|
1485
1484
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
1486
1485
|
}>;
|
|
1487
1486
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
1488
|
-
areaName: import("vue").Ref<string, string>;
|
|
1489
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
1490
1487
|
player: any;
|
|
1491
1488
|
id: string;
|
|
1492
1489
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -1495,51 +1492,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1495
1492
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
1496
1493
|
videoInfo: import("vue").Ref<any, any>;
|
|
1497
1494
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
1498
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
1499
|
-
maxReconnectAttempts: number;
|
|
1500
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
1501
|
-
requestCache: Map<string, {
|
|
1502
|
-
timestamp: number;
|
|
1503
|
-
url: string;
|
|
1504
|
-
}>;
|
|
1505
|
-
DEBOUNCE_TIME: number;
|
|
1506
|
-
timers: {
|
|
1507
|
-
initTimer: number | null;
|
|
1508
|
-
cleanupInterval: number | null;
|
|
1509
|
-
memoryCheckInterval: number | null;
|
|
1510
|
-
reconnectTimer: number | null;
|
|
1511
|
-
debounceTimer: number | null;
|
|
1512
|
-
lightCleanInterval: number | null;
|
|
1513
|
-
rebuildInterval: number | null;
|
|
1514
|
-
};
|
|
1515
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
1516
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
1517
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
1518
|
-
eventHandlers: {
|
|
1519
|
-
event: string;
|
|
1520
|
-
handler: Function;
|
|
1521
|
-
}[];
|
|
1522
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
1523
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
1524
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
1525
|
-
CLEAN_INTERVAL: number;
|
|
1526
|
-
lastMemoryPeak: number;
|
|
1527
|
-
formatUrl: (url: string) => string;
|
|
1528
|
-
initPlayer: (url: string) => Promise<void>;
|
|
1529
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
1530
1495
|
play: (url?: string) => void;
|
|
1531
1496
|
playerPause: () => void;
|
|
1532
1497
|
playerScreenShot: () => void;
|
|
1533
1498
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
handleReconnect: () => void;
|
|
1537
|
-
createPlayerDom: () => void;
|
|
1538
|
-
startMemoryMonitoring: () => void;
|
|
1539
|
-
checkMemoryUsage: () => Promise<void>;
|
|
1540
|
-
performEmergencyCleanup: () => void;
|
|
1499
|
+
formatUrl: (url: string) => string;
|
|
1500
|
+
initPlayer: (url: string) => Promise<void>;
|
|
1541
1501
|
removePlayerDom: () => void;
|
|
1542
|
-
|
|
1502
|
+
createPlayerDom: () => void;
|
|
1503
|
+
createPlayer: () => Promise<void>;
|
|
1504
|
+
destroy: () => void;
|
|
1543
1505
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
1544
1506
|
videoName: {
|
|
1545
1507
|
type: StringConstructor;
|
|
@@ -1573,7 +1535,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1573
1535
|
message: string;
|
|
1574
1536
|
videoName: string;
|
|
1575
1537
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1576
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
1538
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1577
1539
|
url: {
|
|
1578
1540
|
type: StringConstructor;
|
|
1579
1541
|
default: string;
|
|
@@ -1605,7 +1567,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1605
1567
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
1606
1568
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
1607
1569
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
1608
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
1609
1570
|
}>, {
|
|
1610
1571
|
url: string;
|
|
1611
1572
|
accessToken: string;
|
|
@@ -3220,15 +3181,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3220
3181
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3221
3182
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3222
3183
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
3223
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
3224
3184
|
}> & {}>;
|
|
3225
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
3185
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
3226
3186
|
slots: Readonly<{
|
|
3227
3187
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
3228
3188
|
}>;
|
|
3229
3189
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
3230
|
-
areaName: import("vue").Ref<string, string>;
|
|
3231
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
3232
3190
|
player: any;
|
|
3233
3191
|
id: string;
|
|
3234
3192
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -3237,51 +3195,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3237
3195
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
3238
3196
|
videoInfo: import("vue").Ref<any, any>;
|
|
3239
3197
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
3240
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
3241
|
-
maxReconnectAttempts: number;
|
|
3242
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
3243
|
-
requestCache: Map<string, {
|
|
3244
|
-
timestamp: number;
|
|
3245
|
-
url: string;
|
|
3246
|
-
}>;
|
|
3247
|
-
DEBOUNCE_TIME: number;
|
|
3248
|
-
timers: {
|
|
3249
|
-
initTimer: number | null;
|
|
3250
|
-
cleanupInterval: number | null;
|
|
3251
|
-
memoryCheckInterval: number | null;
|
|
3252
|
-
reconnectTimer: number | null;
|
|
3253
|
-
debounceTimer: number | null;
|
|
3254
|
-
lightCleanInterval: number | null;
|
|
3255
|
-
rebuildInterval: number | null;
|
|
3256
|
-
};
|
|
3257
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
3258
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
3259
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
3260
|
-
eventHandlers: {
|
|
3261
|
-
event: string;
|
|
3262
|
-
handler: Function;
|
|
3263
|
-
}[];
|
|
3264
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
3265
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
3266
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
3267
|
-
CLEAN_INTERVAL: number;
|
|
3268
|
-
lastMemoryPeak: number;
|
|
3269
|
-
formatUrl: (url: string) => string;
|
|
3270
|
-
initPlayer: (url: string) => Promise<void>;
|
|
3271
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
3272
3198
|
play: (url?: string) => void;
|
|
3273
3199
|
playerPause: () => void;
|
|
3274
3200
|
playerScreenShot: () => void;
|
|
3275
3201
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
3276
|
-
|
|
3277
|
-
|
|
3278
|
-
handleReconnect: () => void;
|
|
3279
|
-
createPlayerDom: () => void;
|
|
3280
|
-
startMemoryMonitoring: () => void;
|
|
3281
|
-
checkMemoryUsage: () => Promise<void>;
|
|
3282
|
-
performEmergencyCleanup: () => void;
|
|
3202
|
+
formatUrl: (url: string) => string;
|
|
3203
|
+
initPlayer: (url: string) => Promise<void>;
|
|
3283
3204
|
removePlayerDom: () => void;
|
|
3284
|
-
|
|
3205
|
+
createPlayerDom: () => void;
|
|
3206
|
+
createPlayer: () => Promise<void>;
|
|
3207
|
+
destroy: () => void;
|
|
3285
3208
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3286
3209
|
videoName: {
|
|
3287
3210
|
type: StringConstructor;
|
|
@@ -3315,7 +3238,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3315
3238
|
message: string;
|
|
3316
3239
|
videoName: string;
|
|
3317
3240
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3318
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
3241
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3319
3242
|
url: {
|
|
3320
3243
|
type: StringConstructor;
|
|
3321
3244
|
default: string;
|
|
@@ -3347,7 +3270,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3347
3270
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3348
3271
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3349
3272
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
3350
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
3351
3273
|
}>, {
|
|
3352
3274
|
url: string;
|
|
3353
3275
|
accessToken: string;
|
|
@@ -3422,6 +3344,107 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3422
3344
|
areaName: string;
|
|
3423
3345
|
platformTypeName: string;
|
|
3424
3346
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3347
|
+
readonly hls: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3348
|
+
url: {
|
|
3349
|
+
type: StringConstructor;
|
|
3350
|
+
default: string;
|
|
3351
|
+
};
|
|
3352
|
+
accessToken: {
|
|
3353
|
+
type: StringConstructor;
|
|
3354
|
+
default: string;
|
|
3355
|
+
};
|
|
3356
|
+
areaName: {
|
|
3357
|
+
type: StringConstructor;
|
|
3358
|
+
default: string;
|
|
3359
|
+
};
|
|
3360
|
+
deviceSerial: {
|
|
3361
|
+
type: StringConstructor;
|
|
3362
|
+
default: string;
|
|
3363
|
+
};
|
|
3364
|
+
platformTypeName: {
|
|
3365
|
+
type: StringConstructor;
|
|
3366
|
+
default: string;
|
|
3367
|
+
};
|
|
3368
|
+
debug: {
|
|
3369
|
+
type: BooleanConstructor;
|
|
3370
|
+
default: boolean;
|
|
3371
|
+
};
|
|
3372
|
+
}>, {
|
|
3373
|
+
props: import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
3374
|
+
url: {
|
|
3375
|
+
type: StringConstructor;
|
|
3376
|
+
default: string;
|
|
3377
|
+
};
|
|
3378
|
+
accessToken: {
|
|
3379
|
+
type: StringConstructor;
|
|
3380
|
+
default: string;
|
|
3381
|
+
};
|
|
3382
|
+
areaName: {
|
|
3383
|
+
type: StringConstructor;
|
|
3384
|
+
default: string;
|
|
3385
|
+
};
|
|
3386
|
+
deviceSerial: {
|
|
3387
|
+
type: StringConstructor;
|
|
3388
|
+
default: string;
|
|
3389
|
+
};
|
|
3390
|
+
platformTypeName: {
|
|
3391
|
+
type: StringConstructor;
|
|
3392
|
+
default: string;
|
|
3393
|
+
};
|
|
3394
|
+
debug: {
|
|
3395
|
+
type: BooleanConstructor;
|
|
3396
|
+
default: boolean;
|
|
3397
|
+
};
|
|
3398
|
+
}>> & Readonly<{
|
|
3399
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
3400
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
3401
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
3402
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3403
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3404
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
3405
|
+
}> & {}>;
|
|
3406
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
3407
|
+
setCamera: () => void;
|
|
3408
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3409
|
+
url: {
|
|
3410
|
+
type: StringConstructor;
|
|
3411
|
+
default: string;
|
|
3412
|
+
};
|
|
3413
|
+
accessToken: {
|
|
3414
|
+
type: StringConstructor;
|
|
3415
|
+
default: string;
|
|
3416
|
+
};
|
|
3417
|
+
areaName: {
|
|
3418
|
+
type: StringConstructor;
|
|
3419
|
+
default: string;
|
|
3420
|
+
};
|
|
3421
|
+
deviceSerial: {
|
|
3422
|
+
type: StringConstructor;
|
|
3423
|
+
default: string;
|
|
3424
|
+
};
|
|
3425
|
+
platformTypeName: {
|
|
3426
|
+
type: StringConstructor;
|
|
3427
|
+
default: string;
|
|
3428
|
+
};
|
|
3429
|
+
debug: {
|
|
3430
|
+
type: BooleanConstructor;
|
|
3431
|
+
default: boolean;
|
|
3432
|
+
};
|
|
3433
|
+
}>> & Readonly<{
|
|
3434
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
3435
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
3436
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
3437
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3438
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3439
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
3440
|
+
}>, {
|
|
3441
|
+
url: string;
|
|
3442
|
+
accessToken: string;
|
|
3443
|
+
debug: boolean;
|
|
3444
|
+
deviceSerial: string;
|
|
3445
|
+
areaName: string;
|
|
3446
|
+
platformTypeName: string;
|
|
3447
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3425
3448
|
};
|
|
3426
3449
|
playerComponent: import("vue").ComputedRef<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3427
3450
|
url: {
|
|
@@ -3481,15 +3504,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3481
3504
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3482
3505
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3483
3506
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
3484
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
3485
3507
|
}> & {}>;
|
|
3486
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
3508
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
3487
3509
|
slots: Readonly<{
|
|
3488
3510
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
3489
3511
|
}>;
|
|
3490
3512
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
3491
|
-
areaName: import("vue").Ref<string, string>;
|
|
3492
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
3493
3513
|
player: any;
|
|
3494
3514
|
id: string;
|
|
3495
3515
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -3498,51 +3518,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3498
3518
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
3499
3519
|
videoInfo: import("vue").Ref<any, any>;
|
|
3500
3520
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
3501
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
3502
|
-
maxReconnectAttempts: number;
|
|
3503
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
3504
|
-
requestCache: Map<string, {
|
|
3505
|
-
timestamp: number;
|
|
3506
|
-
url: string;
|
|
3507
|
-
}>;
|
|
3508
|
-
DEBOUNCE_TIME: number;
|
|
3509
|
-
timers: {
|
|
3510
|
-
initTimer: number | null;
|
|
3511
|
-
cleanupInterval: number | null;
|
|
3512
|
-
memoryCheckInterval: number | null;
|
|
3513
|
-
reconnectTimer: number | null;
|
|
3514
|
-
debounceTimer: number | null;
|
|
3515
|
-
lightCleanInterval: number | null;
|
|
3516
|
-
rebuildInterval: number | null;
|
|
3517
|
-
};
|
|
3518
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
3519
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
3520
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
3521
|
-
eventHandlers: {
|
|
3522
|
-
event: string;
|
|
3523
|
-
handler: Function;
|
|
3524
|
-
}[];
|
|
3525
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
3526
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
3527
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
3528
|
-
CLEAN_INTERVAL: number;
|
|
3529
|
-
lastMemoryPeak: number;
|
|
3530
|
-
formatUrl: (url: string) => string;
|
|
3531
|
-
initPlayer: (url: string) => Promise<void>;
|
|
3532
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
3533
3521
|
play: (url?: string) => void;
|
|
3534
3522
|
playerPause: () => void;
|
|
3535
3523
|
playerScreenShot: () => void;
|
|
3536
3524
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
handleReconnect: () => void;
|
|
3540
|
-
createPlayerDom: () => void;
|
|
3541
|
-
startMemoryMonitoring: () => void;
|
|
3542
|
-
checkMemoryUsage: () => Promise<void>;
|
|
3543
|
-
performEmergencyCleanup: () => void;
|
|
3525
|
+
formatUrl: (url: string) => string;
|
|
3526
|
+
initPlayer: (url: string) => Promise<void>;
|
|
3544
3527
|
removePlayerDom: () => void;
|
|
3545
|
-
|
|
3528
|
+
createPlayerDom: () => void;
|
|
3529
|
+
createPlayer: () => Promise<void>;
|
|
3530
|
+
destroy: () => void;
|
|
3546
3531
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3547
3532
|
videoName: {
|
|
3548
3533
|
type: StringConstructor;
|
|
@@ -3576,7 +3561,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3576
3561
|
message: string;
|
|
3577
3562
|
videoName: string;
|
|
3578
3563
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3579
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
3564
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
3580
3565
|
url: {
|
|
3581
3566
|
type: StringConstructor;
|
|
3582
3567
|
default: string;
|
|
@@ -3608,7 +3593,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3608
3593
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
3609
3594
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
3610
3595
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
3611
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
3612
3596
|
}>, {
|
|
3613
3597
|
url: string;
|
|
3614
3598
|
accessToken: string;
|
|
@@ -5038,15 +5022,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5038
5022
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
5039
5023
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
5040
5024
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
5041
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
5042
5025
|
}> & {}>;
|
|
5043
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
5026
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
5044
5027
|
slots: Readonly<{
|
|
5045
5028
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
5046
5029
|
}>;
|
|
5047
5030
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
5048
|
-
areaName: import("vue").Ref<string, string>;
|
|
5049
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
5050
5031
|
player: any;
|
|
5051
5032
|
id: string;
|
|
5052
5033
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -5055,51 +5036,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5055
5036
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
5056
5037
|
videoInfo: import("vue").Ref<any, any>;
|
|
5057
5038
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
5058
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
5059
|
-
maxReconnectAttempts: number;
|
|
5060
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
5061
|
-
requestCache: Map<string, {
|
|
5062
|
-
timestamp: number;
|
|
5063
|
-
url: string;
|
|
5064
|
-
}>;
|
|
5065
|
-
DEBOUNCE_TIME: number;
|
|
5066
|
-
timers: {
|
|
5067
|
-
initTimer: number | null;
|
|
5068
|
-
cleanupInterval: number | null;
|
|
5069
|
-
memoryCheckInterval: number | null;
|
|
5070
|
-
reconnectTimer: number | null;
|
|
5071
|
-
debounceTimer: number | null;
|
|
5072
|
-
lightCleanInterval: number | null;
|
|
5073
|
-
rebuildInterval: number | null;
|
|
5074
|
-
};
|
|
5075
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
5076
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
5077
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
5078
|
-
eventHandlers: {
|
|
5079
|
-
event: string;
|
|
5080
|
-
handler: Function;
|
|
5081
|
-
}[];
|
|
5082
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
5083
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
5084
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
5085
|
-
CLEAN_INTERVAL: number;
|
|
5086
|
-
lastMemoryPeak: number;
|
|
5087
|
-
formatUrl: (url: string) => string;
|
|
5088
|
-
initPlayer: (url: string) => Promise<void>;
|
|
5089
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
5090
5039
|
play: (url?: string) => void;
|
|
5091
5040
|
playerPause: () => void;
|
|
5092
5041
|
playerScreenShot: () => void;
|
|
5093
5042
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
5094
|
-
|
|
5095
|
-
|
|
5096
|
-
handleReconnect: () => void;
|
|
5097
|
-
createPlayerDom: () => void;
|
|
5098
|
-
startMemoryMonitoring: () => void;
|
|
5099
|
-
checkMemoryUsage: () => Promise<void>;
|
|
5100
|
-
performEmergencyCleanup: () => void;
|
|
5043
|
+
formatUrl: (url: string) => string;
|
|
5044
|
+
initPlayer: (url: string) => Promise<void>;
|
|
5101
5045
|
removePlayerDom: () => void;
|
|
5102
|
-
|
|
5046
|
+
createPlayerDom: () => void;
|
|
5047
|
+
createPlayer: () => Promise<void>;
|
|
5048
|
+
destroy: () => void;
|
|
5103
5049
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
5104
5050
|
videoName: {
|
|
5105
5051
|
type: StringConstructor;
|
|
@@ -5133,7 +5079,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5133
5079
|
message: string;
|
|
5134
5080
|
videoName: string;
|
|
5135
5081
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
5136
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
5082
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5137
5083
|
url: {
|
|
5138
5084
|
type: StringConstructor;
|
|
5139
5085
|
default: string;
|
|
@@ -5165,7 +5111,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
5165
5111
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
5166
5112
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
5167
5113
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
5168
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
5169
5114
|
}>, {
|
|
5170
5115
|
url: string;
|
|
5171
5116
|
accessToken: string;
|
|
@@ -6778,15 +6723,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6778
6723
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
6779
6724
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
6780
6725
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
6781
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
6782
6726
|
}> & {}>;
|
|
6783
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
6727
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
6784
6728
|
slots: Readonly<{
|
|
6785
6729
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
6786
6730
|
}>;
|
|
6787
6731
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
6788
|
-
areaName: import("vue").Ref<string, string>;
|
|
6789
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
6790
6732
|
player: any;
|
|
6791
6733
|
id: string;
|
|
6792
6734
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -6795,51 +6737,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6795
6737
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
6796
6738
|
videoInfo: import("vue").Ref<any, any>;
|
|
6797
6739
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
6798
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
6799
|
-
maxReconnectAttempts: number;
|
|
6800
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
6801
|
-
requestCache: Map<string, {
|
|
6802
|
-
timestamp: number;
|
|
6803
|
-
url: string;
|
|
6804
|
-
}>;
|
|
6805
|
-
DEBOUNCE_TIME: number;
|
|
6806
|
-
timers: {
|
|
6807
|
-
initTimer: number | null;
|
|
6808
|
-
cleanupInterval: number | null;
|
|
6809
|
-
memoryCheckInterval: number | null;
|
|
6810
|
-
reconnectTimer: number | null;
|
|
6811
|
-
debounceTimer: number | null;
|
|
6812
|
-
lightCleanInterval: number | null;
|
|
6813
|
-
rebuildInterval: number | null;
|
|
6814
|
-
};
|
|
6815
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
6816
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
6817
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
6818
|
-
eventHandlers: {
|
|
6819
|
-
event: string;
|
|
6820
|
-
handler: Function;
|
|
6821
|
-
}[];
|
|
6822
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
6823
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
6824
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
6825
|
-
CLEAN_INTERVAL: number;
|
|
6826
|
-
lastMemoryPeak: number;
|
|
6827
|
-
formatUrl: (url: string) => string;
|
|
6828
|
-
initPlayer: (url: string) => Promise<void>;
|
|
6829
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
6830
6740
|
play: (url?: string) => void;
|
|
6831
6741
|
playerPause: () => void;
|
|
6832
6742
|
playerScreenShot: () => void;
|
|
6833
6743
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
handleReconnect: () => void;
|
|
6837
|
-
createPlayerDom: () => void;
|
|
6838
|
-
startMemoryMonitoring: () => void;
|
|
6839
|
-
checkMemoryUsage: () => Promise<void>;
|
|
6840
|
-
performEmergencyCleanup: () => void;
|
|
6744
|
+
formatUrl: (url: string) => string;
|
|
6745
|
+
initPlayer: (url: string) => Promise<void>;
|
|
6841
6746
|
removePlayerDom: () => void;
|
|
6842
|
-
|
|
6747
|
+
createPlayerDom: () => void;
|
|
6748
|
+
createPlayer: () => Promise<void>;
|
|
6749
|
+
destroy: () => void;
|
|
6843
6750
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6844
6751
|
videoName: {
|
|
6845
6752
|
type: StringConstructor;
|
|
@@ -6873,7 +6780,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6873
6780
|
message: string;
|
|
6874
6781
|
videoName: string;
|
|
6875
6782
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6876
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
6783
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6877
6784
|
url: {
|
|
6878
6785
|
type: StringConstructor;
|
|
6879
6786
|
default: string;
|
|
@@ -6905,7 +6812,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6905
6812
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
6906
6813
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
6907
6814
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
6908
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
6909
6815
|
}>, {
|
|
6910
6816
|
url: string;
|
|
6911
6817
|
accessToken: string;
|
|
@@ -6979,6 +6885,106 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6979
6885
|
deviceSerial: string;
|
|
6980
6886
|
areaName: string;
|
|
6981
6887
|
platformTypeName: string;
|
|
6888
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6889
|
+
url: {
|
|
6890
|
+
type: StringConstructor;
|
|
6891
|
+
default: string;
|
|
6892
|
+
};
|
|
6893
|
+
accessToken: {
|
|
6894
|
+
type: StringConstructor;
|
|
6895
|
+
default: string;
|
|
6896
|
+
};
|
|
6897
|
+
areaName: {
|
|
6898
|
+
type: StringConstructor;
|
|
6899
|
+
default: string;
|
|
6900
|
+
};
|
|
6901
|
+
deviceSerial: {
|
|
6902
|
+
type: StringConstructor;
|
|
6903
|
+
default: string;
|
|
6904
|
+
};
|
|
6905
|
+
platformTypeName: {
|
|
6906
|
+
type: StringConstructor;
|
|
6907
|
+
default: string;
|
|
6908
|
+
};
|
|
6909
|
+
debug: {
|
|
6910
|
+
type: BooleanConstructor;
|
|
6911
|
+
default: boolean;
|
|
6912
|
+
};
|
|
6913
|
+
}>, {
|
|
6914
|
+
props: import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
6915
|
+
url: {
|
|
6916
|
+
type: StringConstructor;
|
|
6917
|
+
default: string;
|
|
6918
|
+
};
|
|
6919
|
+
accessToken: {
|
|
6920
|
+
type: StringConstructor;
|
|
6921
|
+
default: string;
|
|
6922
|
+
};
|
|
6923
|
+
areaName: {
|
|
6924
|
+
type: StringConstructor;
|
|
6925
|
+
default: string;
|
|
6926
|
+
};
|
|
6927
|
+
deviceSerial: {
|
|
6928
|
+
type: StringConstructor;
|
|
6929
|
+
default: string;
|
|
6930
|
+
};
|
|
6931
|
+
platformTypeName: {
|
|
6932
|
+
type: StringConstructor;
|
|
6933
|
+
default: string;
|
|
6934
|
+
};
|
|
6935
|
+
debug: {
|
|
6936
|
+
type: BooleanConstructor;
|
|
6937
|
+
default: boolean;
|
|
6938
|
+
};
|
|
6939
|
+
}>> & Readonly<{
|
|
6940
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
6941
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
6942
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
6943
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
6944
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
6945
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
6946
|
+
}> & {}>;
|
|
6947
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
6948
|
+
setCamera: () => void;
|
|
6949
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6950
|
+
url: {
|
|
6951
|
+
type: StringConstructor;
|
|
6952
|
+
default: string;
|
|
6953
|
+
};
|
|
6954
|
+
accessToken: {
|
|
6955
|
+
type: StringConstructor;
|
|
6956
|
+
default: string;
|
|
6957
|
+
};
|
|
6958
|
+
areaName: {
|
|
6959
|
+
type: StringConstructor;
|
|
6960
|
+
default: string;
|
|
6961
|
+
};
|
|
6962
|
+
deviceSerial: {
|
|
6963
|
+
type: StringConstructor;
|
|
6964
|
+
default: string;
|
|
6965
|
+
};
|
|
6966
|
+
platformTypeName: {
|
|
6967
|
+
type: StringConstructor;
|
|
6968
|
+
default: string;
|
|
6969
|
+
};
|
|
6970
|
+
debug: {
|
|
6971
|
+
type: BooleanConstructor;
|
|
6972
|
+
default: boolean;
|
|
6973
|
+
};
|
|
6974
|
+
}>> & Readonly<{
|
|
6975
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
6976
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
6977
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
6978
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
6979
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
6980
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
6981
|
+
}>, {
|
|
6982
|
+
url: string;
|
|
6983
|
+
accessToken: string;
|
|
6984
|
+
debug: boolean;
|
|
6985
|
+
deviceSerial: string;
|
|
6986
|
+
areaName: string;
|
|
6987
|
+
platformTypeName: string;
|
|
6982
6988
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
6983
6989
|
errorState: import("vue").ComputedRef<{
|
|
6984
6990
|
type: string;
|
|
@@ -7042,15 +7048,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7042
7048
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
7043
7049
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
7044
7050
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
7045
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
7046
7051
|
}> & {}>;
|
|
7047
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
7052
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
7048
7053
|
slots: Readonly<{
|
|
7049
7054
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
7050
7055
|
}>;
|
|
7051
7056
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
7052
|
-
areaName: import("vue").Ref<string, string>;
|
|
7053
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
7054
7057
|
player: any;
|
|
7055
7058
|
id: string;
|
|
7056
7059
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -7059,51 +7062,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7059
7062
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
7060
7063
|
videoInfo: import("vue").Ref<any, any>;
|
|
7061
7064
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
7062
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
7063
|
-
maxReconnectAttempts: number;
|
|
7064
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
7065
|
-
requestCache: Map<string, {
|
|
7066
|
-
timestamp: number;
|
|
7067
|
-
url: string;
|
|
7068
|
-
}>;
|
|
7069
|
-
DEBOUNCE_TIME: number;
|
|
7070
|
-
timers: {
|
|
7071
|
-
initTimer: number | null;
|
|
7072
|
-
cleanupInterval: number | null;
|
|
7073
|
-
memoryCheckInterval: number | null;
|
|
7074
|
-
reconnectTimer: number | null;
|
|
7075
|
-
debounceTimer: number | null;
|
|
7076
|
-
lightCleanInterval: number | null;
|
|
7077
|
-
rebuildInterval: number | null;
|
|
7078
|
-
};
|
|
7079
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
7080
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
7081
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
7082
|
-
eventHandlers: {
|
|
7083
|
-
event: string;
|
|
7084
|
-
handler: Function;
|
|
7085
|
-
}[];
|
|
7086
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
7087
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
7088
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
7089
|
-
CLEAN_INTERVAL: number;
|
|
7090
|
-
lastMemoryPeak: number;
|
|
7091
|
-
formatUrl: (url: string) => string;
|
|
7092
|
-
initPlayer: (url: string) => Promise<void>;
|
|
7093
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
7094
7065
|
play: (url?: string) => void;
|
|
7095
7066
|
playerPause: () => void;
|
|
7096
7067
|
playerScreenShot: () => void;
|
|
7097
7068
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
7098
|
-
|
|
7099
|
-
|
|
7100
|
-
handleReconnect: () => void;
|
|
7101
|
-
createPlayerDom: () => void;
|
|
7102
|
-
startMemoryMonitoring: () => void;
|
|
7103
|
-
checkMemoryUsage: () => Promise<void>;
|
|
7104
|
-
performEmergencyCleanup: () => void;
|
|
7069
|
+
formatUrl: (url: string) => string;
|
|
7070
|
+
initPlayer: (url: string) => Promise<void>;
|
|
7105
7071
|
removePlayerDom: () => void;
|
|
7106
|
-
|
|
7072
|
+
createPlayerDom: () => void;
|
|
7073
|
+
createPlayer: () => Promise<void>;
|
|
7074
|
+
destroy: () => void;
|
|
7107
7075
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
7108
7076
|
videoName: {
|
|
7109
7077
|
type: StringConstructor;
|
|
@@ -7137,7 +7105,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7137
7105
|
message: string;
|
|
7138
7106
|
videoName: string;
|
|
7139
7107
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
7140
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
7108
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7141
7109
|
url: {
|
|
7142
7110
|
type: StringConstructor;
|
|
7143
7111
|
default: string;
|
|
@@ -7169,7 +7137,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7169
7137
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
7170
7138
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
7171
7139
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
7172
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
7173
7140
|
}>, {
|
|
7174
7141
|
url: string;
|
|
7175
7142
|
accessToken: string;
|
|
@@ -8599,15 +8566,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8599
8566
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
8600
8567
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
8601
8568
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
8602
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
8603
8569
|
}> & {}>;
|
|
8604
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
8570
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
8605
8571
|
slots: Readonly<{
|
|
8606
8572
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
8607
8573
|
}>;
|
|
8608
8574
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
8609
|
-
areaName: import("vue").Ref<string, string>;
|
|
8610
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
8611
8575
|
player: any;
|
|
8612
8576
|
id: string;
|
|
8613
8577
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -8616,51 +8580,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8616
8580
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
8617
8581
|
videoInfo: import("vue").Ref<any, any>;
|
|
8618
8582
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
8619
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
8620
|
-
maxReconnectAttempts: number;
|
|
8621
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
8622
|
-
requestCache: Map<string, {
|
|
8623
|
-
timestamp: number;
|
|
8624
|
-
url: string;
|
|
8625
|
-
}>;
|
|
8626
|
-
DEBOUNCE_TIME: number;
|
|
8627
|
-
timers: {
|
|
8628
|
-
initTimer: number | null;
|
|
8629
|
-
cleanupInterval: number | null;
|
|
8630
|
-
memoryCheckInterval: number | null;
|
|
8631
|
-
reconnectTimer: number | null;
|
|
8632
|
-
debounceTimer: number | null;
|
|
8633
|
-
lightCleanInterval: number | null;
|
|
8634
|
-
rebuildInterval: number | null;
|
|
8635
|
-
};
|
|
8636
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
8637
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
8638
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
8639
|
-
eventHandlers: {
|
|
8640
|
-
event: string;
|
|
8641
|
-
handler: Function;
|
|
8642
|
-
}[];
|
|
8643
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
8644
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
8645
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
8646
|
-
CLEAN_INTERVAL: number;
|
|
8647
|
-
lastMemoryPeak: number;
|
|
8648
|
-
formatUrl: (url: string) => string;
|
|
8649
|
-
initPlayer: (url: string) => Promise<void>;
|
|
8650
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
8651
8583
|
play: (url?: string) => void;
|
|
8652
8584
|
playerPause: () => void;
|
|
8653
8585
|
playerScreenShot: () => void;
|
|
8654
8586
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
handleReconnect: () => void;
|
|
8658
|
-
createPlayerDom: () => void;
|
|
8659
|
-
startMemoryMonitoring: () => void;
|
|
8660
|
-
checkMemoryUsage: () => Promise<void>;
|
|
8661
|
-
performEmergencyCleanup: () => void;
|
|
8587
|
+
formatUrl: (url: string) => string;
|
|
8588
|
+
initPlayer: (url: string) => Promise<void>;
|
|
8662
8589
|
removePlayerDom: () => void;
|
|
8663
|
-
|
|
8590
|
+
createPlayerDom: () => void;
|
|
8591
|
+
createPlayer: () => Promise<void>;
|
|
8592
|
+
destroy: () => void;
|
|
8664
8593
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
8665
8594
|
videoName: {
|
|
8666
8595
|
type: StringConstructor;
|
|
@@ -8694,7 +8623,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8694
8623
|
message: string;
|
|
8695
8624
|
videoName: string;
|
|
8696
8625
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8697
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
8626
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8698
8627
|
url: {
|
|
8699
8628
|
type: StringConstructor;
|
|
8700
8629
|
default: string;
|
|
@@ -8726,7 +8655,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8726
8655
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
8727
8656
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
8728
8657
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
8729
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
8730
8658
|
}>, {
|
|
8731
8659
|
url: string;
|
|
8732
8660
|
accessToken: string;
|
|
@@ -10339,15 +10267,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10339
10267
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
10340
10268
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
10341
10269
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
10342
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
10343
10270
|
}> & {}>;
|
|
10344
|
-
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
10271
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
10345
10272
|
slots: Readonly<{
|
|
10346
10273
|
[name: string]: import("vue").Slot<any> | undefined;
|
|
10347
10274
|
}>;
|
|
10348
10275
|
customBar: import("vue").ComputedRef<import("vue").Slot<any> | undefined>;
|
|
10349
|
-
areaName: import("vue").Ref<string, string>;
|
|
10350
|
-
deviceSerial: import("vue").Ref<string, string>;
|
|
10351
10276
|
player: any;
|
|
10352
10277
|
id: string;
|
|
10353
10278
|
playerRef: import("vue").ShallowRef<HTMLDivElement | undefined, HTMLDivElement | undefined>;
|
|
@@ -10356,51 +10281,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10356
10281
|
isFullscreen: import("vue").Ref<boolean, boolean>;
|
|
10357
10282
|
videoInfo: import("vue").Ref<any, any>;
|
|
10358
10283
|
realFullscreen: import("vue").Ref<boolean, boolean>;
|
|
10359
|
-
reconnectAttempts: import("vue").Ref<number, number>;
|
|
10360
|
-
maxReconnectAttempts: number;
|
|
10361
|
-
reconnectCoolDown: import("vue").Ref<number, number>;
|
|
10362
|
-
requestCache: Map<string, {
|
|
10363
|
-
timestamp: number;
|
|
10364
|
-
url: string;
|
|
10365
|
-
}>;
|
|
10366
|
-
DEBOUNCE_TIME: number;
|
|
10367
|
-
timers: {
|
|
10368
|
-
initTimer: number | null;
|
|
10369
|
-
cleanupInterval: number | null;
|
|
10370
|
-
memoryCheckInterval: number | null;
|
|
10371
|
-
reconnectTimer: number | null;
|
|
10372
|
-
debounceTimer: number | null;
|
|
10373
|
-
lightCleanInterval: number | null;
|
|
10374
|
-
rebuildInterval: number | null;
|
|
10375
|
-
};
|
|
10376
|
-
HIGH_MEMORY_THRESHOLD: number;
|
|
10377
|
-
EMERGENCY_CLEAN_TIMEOUT: number;
|
|
10378
|
-
MEMORY_CHECK_INTERVAL: number;
|
|
10379
|
-
eventHandlers: {
|
|
10380
|
-
event: string;
|
|
10381
|
-
handler: Function;
|
|
10382
|
-
}[];
|
|
10383
|
-
isPlayerIniting: import("vue").Ref<boolean, boolean>;
|
|
10384
|
-
isPlayerDestroyed: import("vue").Ref<boolean, boolean>;
|
|
10385
|
-
MEMORY_PEAK_THRESHOLD: number;
|
|
10386
|
-
CLEAN_INTERVAL: number;
|
|
10387
|
-
lastMemoryPeak: number;
|
|
10388
|
-
formatUrl: (url: string) => string;
|
|
10389
|
-
initPlayer: (url: string) => Promise<void>;
|
|
10390
|
-
debouncedInitPlayer: import("lodash").DebouncedFunc<(newUrl: string) => void>;
|
|
10391
10284
|
play: (url?: string) => void;
|
|
10392
10285
|
playerPause: () => void;
|
|
10393
10286
|
playerScreenShot: () => void;
|
|
10394
10287
|
playerFullscreen: (fullscreen: boolean) => void;
|
|
10395
|
-
|
|
10396
|
-
|
|
10397
|
-
handleReconnect: () => void;
|
|
10398
|
-
createPlayerDom: () => void;
|
|
10399
|
-
startMemoryMonitoring: () => void;
|
|
10400
|
-
checkMemoryUsage: () => Promise<void>;
|
|
10401
|
-
performEmergencyCleanup: () => void;
|
|
10288
|
+
formatUrl: (url: string) => string;
|
|
10289
|
+
initPlayer: (url: string) => Promise<void>;
|
|
10402
10290
|
removePlayerDom: () => void;
|
|
10403
|
-
|
|
10291
|
+
createPlayerDom: () => void;
|
|
10292
|
+
createPlayer: () => Promise<void>;
|
|
10293
|
+
destroy: () => void;
|
|
10404
10294
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
10405
10295
|
videoName: {
|
|
10406
10296
|
type: StringConstructor;
|
|
@@ -10434,7 +10324,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10434
10324
|
message: string;
|
|
10435
10325
|
videoName: string;
|
|
10436
10326
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
10437
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute"
|
|
10327
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10438
10328
|
url: {
|
|
10439
10329
|
type: StringConstructor;
|
|
10440
10330
|
default: string;
|
|
@@ -10466,7 +10356,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10466
10356
|
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
10467
10357
|
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
10468
10358
|
onMute?: ((...args: any[]) => any) | undefined;
|
|
10469
|
-
onMemoryWarn?: ((...args: any[]) => any) | undefined;
|
|
10470
10359
|
}>, {
|
|
10471
10360
|
url: string;
|
|
10472
10361
|
accessToken: string;
|
|
@@ -10540,6 +10429,106 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
10540
10429
|
deviceSerial: string;
|
|
10541
10430
|
areaName: string;
|
|
10542
10431
|
platformTypeName: string;
|
|
10432
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
10433
|
+
url: {
|
|
10434
|
+
type: StringConstructor;
|
|
10435
|
+
default: string;
|
|
10436
|
+
};
|
|
10437
|
+
accessToken: {
|
|
10438
|
+
type: StringConstructor;
|
|
10439
|
+
default: string;
|
|
10440
|
+
};
|
|
10441
|
+
areaName: {
|
|
10442
|
+
type: StringConstructor;
|
|
10443
|
+
default: string;
|
|
10444
|
+
};
|
|
10445
|
+
deviceSerial: {
|
|
10446
|
+
type: StringConstructor;
|
|
10447
|
+
default: string;
|
|
10448
|
+
};
|
|
10449
|
+
platformTypeName: {
|
|
10450
|
+
type: StringConstructor;
|
|
10451
|
+
default: string;
|
|
10452
|
+
};
|
|
10453
|
+
debug: {
|
|
10454
|
+
type: BooleanConstructor;
|
|
10455
|
+
default: boolean;
|
|
10456
|
+
};
|
|
10457
|
+
}>, {
|
|
10458
|
+
props: import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
10459
|
+
url: {
|
|
10460
|
+
type: StringConstructor;
|
|
10461
|
+
default: string;
|
|
10462
|
+
};
|
|
10463
|
+
accessToken: {
|
|
10464
|
+
type: StringConstructor;
|
|
10465
|
+
default: string;
|
|
10466
|
+
};
|
|
10467
|
+
areaName: {
|
|
10468
|
+
type: StringConstructor;
|
|
10469
|
+
default: string;
|
|
10470
|
+
};
|
|
10471
|
+
deviceSerial: {
|
|
10472
|
+
type: StringConstructor;
|
|
10473
|
+
default: string;
|
|
10474
|
+
};
|
|
10475
|
+
platformTypeName: {
|
|
10476
|
+
type: StringConstructor;
|
|
10477
|
+
default: string;
|
|
10478
|
+
};
|
|
10479
|
+
debug: {
|
|
10480
|
+
type: BooleanConstructor;
|
|
10481
|
+
default: boolean;
|
|
10482
|
+
};
|
|
10483
|
+
}>> & Readonly<{
|
|
10484
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
10485
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
10486
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
10487
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
10488
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
10489
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
10490
|
+
}> & {}>;
|
|
10491
|
+
emits: (event: "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", ...args: any[]) => void;
|
|
10492
|
+
setCamera: () => void;
|
|
10493
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "play" | "pause" | "videoInfo" | "timeout" | "mute")[], "error" | "play" | "pause" | "videoInfo" | "timeout" | "mute", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10494
|
+
url: {
|
|
10495
|
+
type: StringConstructor;
|
|
10496
|
+
default: string;
|
|
10497
|
+
};
|
|
10498
|
+
accessToken: {
|
|
10499
|
+
type: StringConstructor;
|
|
10500
|
+
default: string;
|
|
10501
|
+
};
|
|
10502
|
+
areaName: {
|
|
10503
|
+
type: StringConstructor;
|
|
10504
|
+
default: string;
|
|
10505
|
+
};
|
|
10506
|
+
deviceSerial: {
|
|
10507
|
+
type: StringConstructor;
|
|
10508
|
+
default: string;
|
|
10509
|
+
};
|
|
10510
|
+
platformTypeName: {
|
|
10511
|
+
type: StringConstructor;
|
|
10512
|
+
default: string;
|
|
10513
|
+
};
|
|
10514
|
+
debug: {
|
|
10515
|
+
type: BooleanConstructor;
|
|
10516
|
+
default: boolean;
|
|
10517
|
+
};
|
|
10518
|
+
}>> & Readonly<{
|
|
10519
|
+
onPlay?: ((...args: any[]) => any) | undefined;
|
|
10520
|
+
onPause?: ((...args: any[]) => any) | undefined;
|
|
10521
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
10522
|
+
onVideoInfo?: ((...args: any[]) => any) | undefined;
|
|
10523
|
+
onTimeout?: ((...args: any[]) => any) | undefined;
|
|
10524
|
+
onMute?: ((...args: any[]) => any) | undefined;
|
|
10525
|
+
}>, {
|
|
10526
|
+
url: string;
|
|
10527
|
+
accessToken: string;
|
|
10528
|
+
debug: boolean;
|
|
10529
|
+
deviceSerial: string;
|
|
10530
|
+
areaName: string;
|
|
10531
|
+
platformTypeName: string;
|
|
10543
10532
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any> | null>;
|
|
10544
10533
|
ErrorPage: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
10545
10534
|
videoName: {
|