the-forest/client/node_modules/postcss-custom-properties/dist/lib/is-ignored.d.ts
2024-09-17 20:35:18 -04:00

5 lines
232 B
TypeScript

import type { Container, Declaration } from 'postcss';
declare function isBlockIgnored(container: Container): any;
declare function isDeclarationIgnored(decl: Declaration): boolean;
export { isBlockIgnored, isDeclarationIgnored, };