parseDeclarations
parseDeclarations(declaration: string): Promise<(AstComment | AstDeclaration)[]>
Parameters
declaration: stringExample:
const declarations = await parseDeclarations('color: red; background: blue');
console.log(declarations);
parseDeclarations(declaration: string): Promise<(AstComment | AstDeclaration)[]>
declaration: string
Example:
const declarations = await parseDeclarations('color: red; background: blue');
console.log(declarations);
Parse a string as an array of declaration nodes