kjelsrud.dev/node_modules/sass-formatter/dist/sassTextLine.d.ts

10 lines
252 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
export declare class SassTextLine {
private text;
isEmptyOrWhitespace: boolean;
constructor(text: string);
/**Sets the text of the line. */
set(text: string): void;
/**Gets the text of the line. */
get(): string;
}