astro-ghostcms/.pnpm-store/v3/files/36/5eceda5ed77f94e5dad0202bfb1...

10 lines
252 B
Plaintext

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;
}