75e3a77d59
Add support for react-native-dom
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,
|
|
};
|