mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 09:18:26 -04:00
5 lines
232 B
TypeScript
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, };
|