13 lines
333 B
TypeScript
13 lines
333 B
TypeScript
export type QiniuZone = 'z0' | 'cn-east-2' | 'z1' | 'z2' | 'na0' | 'as0';
|
|
export type QiniuLiveStreamInfo = {
|
|
createdAt: number;
|
|
updatedAt: number;
|
|
expireAt: number;
|
|
disabledTill: number;
|
|
converts: string[];
|
|
watermark: boolean;
|
|
publishSecurity: string;
|
|
publishKey: string;
|
|
nropEnable: boolean;
|
|
};
|