Files
react-native-video-cache/index.d.ts
2023-09-28 09:09:55 +08:00

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;
}