mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-08 17:12:25 +05:30
60 lines
1.0 KiB
TypeScript
60 lines
1.0 KiB
TypeScript
declare module '*.html' {
|
|
const url: string;
|
|
export = url;
|
|
}
|
|
|
|
declare module '*.svg' {
|
|
const url: string;
|
|
export = url;
|
|
}
|
|
|
|
declare module '*.png' {
|
|
const url: string;
|
|
export = url;
|
|
}
|
|
|
|
declare module '*.gif' {
|
|
const url: string;
|
|
export = url;
|
|
}
|
|
|
|
declare module '*.jpg' {
|
|
const url: string;
|
|
export = url;
|
|
}
|
|
|
|
declare module '*.intl.json' {
|
|
import { MessageDescriptor } from 'react-intl';
|
|
|
|
const descriptor: Record<string, MessageDescriptor>;
|
|
|
|
export = descriptor;
|
|
}
|
|
|
|
declare module '*.json' {
|
|
const jsonContents: {
|
|
[key: string]: any;
|
|
};
|
|
|
|
export = jsonContents;
|
|
}
|
|
|
|
declare module '*.scss' {
|
|
// TODO: replace with:
|
|
// https://www.npmjs.com/package/css-modules-typescript-loader
|
|
// https://github.com/Jimdo/typings-for-css-modules-loader
|
|
const classNames: {
|
|
[className: string]: string;
|
|
};
|
|
|
|
export = classNames;
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const classNames: {
|
|
[className: string]: string;
|
|
};
|
|
|
|
export = classNames;
|
|
}
|