mirror of
https://github.com/element-hq/element-call.git
synced 2026-03-30 15:05:59 +00:00
12 lines
235 B
TypeScript
12 lines
235 B
TypeScript
declare module "*.module.css" {
|
|
const classes: {
|
|
[key: string]: string;
|
|
};
|
|
export default classes;
|
|
}
|
|
declare module "*.svg" {
|
|
export const ReactComponent: React.FunctionComponent<
|
|
React.SVGAttributes<SVGElement>
|
|
>;
|
|
}
|