mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-06-08 07:15:15 -04:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
declare module "*.css" {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module "*.svg" {
|
|
import type React from "react";
|
|
import type { SvgProps } from "react-native-svg";
|
|
|
|
const content: React.FC<SvgProps>;
|
|
export default content;
|
|
}
|