epiphany/node_modules/@csstools/postcss-gamut-mapping/dist/has-override-decl.d.ts
2023-12-09 22:48:07 -08:00

5 lines
167 B
TypeScript

import type { Declaration } from 'postcss';
export declare function hasOverrideOrFallback(node: Declaration): {
hasOverride: boolean;
hasFallback: boolean;
};