mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-03-19 01:07:23 +00:00
10 lines
No EOL
213 B
TypeScript
10 lines
No EOL
213 B
TypeScript
declare module '*.png' {
|
|
const content: any;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
import { SvgProps } from 'react-native-svg';
|
|
const content: React.FC<SvgProps>;
|
|
export default content;
|
|
}
|