UNPKG

571 BTypeScriptView Raw
1export interface SassFormatterConfig {
2 /**Enable debug messages */
3 debug: boolean;
4 /**delete rows that are empty. */
5 deleteEmptyRows: boolean;
6 /**@deprecated*/
7 deleteWhitespace: boolean;
8 /**Convert css or scss to sass */
9 convert: boolean;
10 /**set the space after the colon of a property to one.*/
11 setPropertySpace: boolean;
12 tabSize: number;
13 /**insert spaces or tabs. */
14 insertSpaces: boolean;
15 /**Defaults to LF*/
16 lineEnding: 'LF' | 'CRLF';
17}
18export declare const defaultSassFormatterConfig: SassFormatterConfig;