@o3r/schematics
Version:
Schematics module of the Otter framework
13 lines • 483 B
TypeScript
/**
* Represents an element that is exposed in a Sass import.
*/
export interface SassImportExposedElement {
/** The name of the exposed element */
value: string;
/** The type of the exposed element, either 'function' or 'var' */
type: 'function' | 'var';
/** The name of the replacement element, if any */
replacement?: string | undefined;
}
export declare const listOfExposedElements: SassImportExposedElement[];
//# sourceMappingURL=list-of-vars.d.ts.map