UNPKG

postcss-property-lookup

Version:

PostCSS plugin that allows referencing property values without a variable

13 lines (11 loc) 504 B
export interface PostCssPropertyLookupOptions { /** * When a lookup cannot be resolved, this specifies whether to throw an * error or log a warning. In the case of a warning, the invalid lookup * value will be replaced with an empty string. */ logLevel?: string; } export = PostCssPropertyLookup; declare function PostCssPropertyLookup(options: PostCssPropertyLookupOptions): { postcssPlugin: string; }; declare function PostCssPropertyLookup(): { postcssPlugin: string; };