mirror of
https://github.com/zhigang1992/react-native-video-cache.git
synced 2026-01-12 16:42:21 +08:00
8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
declare module 'react-native-video-cache' {
|
|
function convert(url: string): string;
|
|
function convertAsync(url: string): Promise<string>;
|
|
|
|
export default convert;
|
|
export const convertAsync;
|
|
}
|