You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
525 B
TypeScript
28 lines
525 B
TypeScript
declare module '*.svg' {
|
|
const content: React.FunctionComponent<React.SVGAttributes<SVGElement>>;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.less' {
|
|
const classes: { [className: string]: string };
|
|
export default classes;
|
|
}
|
|
|
|
declare module '*/settings.json' {
|
|
const value: {
|
|
colorWeek: boolean;
|
|
navbar: boolean;
|
|
menu: boolean;
|
|
footer: boolean;
|
|
themeColor: string;
|
|
menuWidth: number;
|
|
};
|
|
|
|
export default value;
|
|
}
|
|
|
|
declare module '*.png' {
|
|
const value: string;
|
|
export default value;
|
|
}
|