UNPKG

@manuth/woltlab-compiler

Version:

A compiler for generating WoltLab-Package `.tar` Archives and other WoltLab-Package Components

24 lines (23 loc) 541 B
/** * Provides the functionality to parse `sass`-variable files. */ export declare class SassVariableParser { /** * The filename of the scss-file to parse. */ private fileName; /** * Provides the functionality to parse an scss-file. * * @param fileName * The filename of the scss-file to parse. */ constructor(fileName: string); /** * Parses the scss-file. * * @returns * The variables inside the scss-file. */ Parse(): Promise<Record<string, string>>; }