sass-export-extend
Version:
Exports Sass files to Json format, able to manage sections with annotations in comments.
15 lines (14 loc) • 427 B
TypeScript
export declare class Parser {
private rawContent;
constructor(rawContent: string);
parse(): IDeclaration[];
parseStructured(): any;
private extractDeclarationsStructured;
private extractDeclarations;
private extractMapDeclarations;
private parseSingleDeclaration;
private parseMapDeclarations;
private checkIsSectionStart;
private checkIsSectionEnd;
private checkIsAnnotation;
}