UNPKG

243 BTypeScriptView Raw
1export declare class SassTextLine {
2 private text;
3 isEmptyOrWhitespace: boolean;
4 constructor(text: string);
5 /**Sets the text of the line. */
6 set(text: string): void;
7 /**Gets the text of the line. */
8 get(): string;
9}