mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
Co-authored-by: Leszek Stachowski <leszek.stachowski@clabs.co> Co-authored-by: Justin Hernandez <transphorm@gmail.com>
17 lines
327 B
TypeScript
17 lines
327 B
TypeScript
declare module '@env';
|
|
declare module '*.png' {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
declare module '*.jpeg' {
|
|
const value: string;
|
|
export = value;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
import React from 'react';
|
|
import { SvgProps } from 'react-native-svg';
|
|
const content: React.FC<SvgProps>;
|
|
export default content;
|
|
}
|