mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 04:25:08 +00:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
|
/**
|
||
|
* Declare SCSS files as modules so we can import them into TS files and use their content
|
||
|
*/
|
||
|
declare module '*.scss'
|
||
|
{
|
||
|
const content: { [className: string]: string; };
|
||
|
export = content;
|
||
|
}
|