11 lines
153 B
JavaScript
11 lines
153 B
JavaScript
|
// @flow
|
||
|
|
||
|
export type VideoSource = {
|
||
|
uri: string,
|
||
|
type: string,
|
||
|
mainVer: number,
|
||
|
patchVer: number,
|
||
|
isNetwork: boolean,
|
||
|
isAsset: boolean,
|
||
|
};
|