If I create a simple file to hold my color variables, let's say:
variables.scss
$color-vue-green: #42b883;
$color-vue-navy: #35495e;
The output is empty,
variables.scss.d.ts
export interface IVariablesScss {
}
export const locals: IVariablesScss;
Whereas I was hoping for it to include:
export interface IVariablesScss {
colorVueGreen: string;
colorVueNavy: string;
}