mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-09 12:05:08 +00:00
9 lines
201 B
TypeScript
9 lines
201 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;
|
|
}
|