mirror of
https://github.com/TheGreyDiamond/Enlight.git
synced 2025-07-18 04:33:50 +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;
|
|
}
|