Files
feedstr.live/node_modules/postcss-custom-properties/dist/lib/is-ignored.d.ts
T
2023-11-25 18:12:47 -05: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, };