11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
|
declare module "*.svg" {
|
||
|
import { SvgProps } from "react-native-svg";
|
||
|
const content: React.FC<SvgProps>;
|
||
|
export default content;
|
||
|
}
|
||
|
|
||
|
declare module "*.png" {
|
||
|
const value: any;
|
||
|
export = value;
|
||
|
}
|