mirror of
https://github.com/TheGreyDiamond/Enlight.git
synced 2026-04-01 07:10:23 +02:00
10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
declare module '*.scss' {
|
|
const content: { [className: string]: string };
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const content: { [className: string]: string };
|
|
export default content;
|
|
}
|