@lwc/style-compiler
Version:
Transform style sheet to be consumed by the LWC engine
12 lines (11 loc) • 353 B
TypeScript
import postcss from 'postcss';
export declare type VarTransformer = (name: string, fallback: string) => string;
export interface PluginConfig {
customProperties?: {
allowDefinition?: boolean;
collectVarFunctions?: boolean;
};
minify?: boolean;
}
declare const _default: postcss.Plugin<PluginConfig>;
export default _default;