UNPKG

522 BTypeScriptView Raw
1import { SassFormatterConfig } from './config';
2export { SassFormatterConfig, defaultSassFormatterConfig } from './config';
3export declare class SassFormatter {
4 static Format(text: string, config?: Partial<SassFormatterConfig>): string;
5 private static formatLine;
6 private static handleCommentBlock;
7 private static handleEmptyLine;
8 private static isBlockHeader;
9 private static isProperty;
10 private static ResetCONTEXT;
11 /** Adds new Line If not first line. */
12 private static addNewLine;
13}