@terrazzo/parser
Version:
Parser/validator for the Design Tokens Community Group (DTCG) standard.
13 lines • 536 B
TypeScript
import type { LintRule } from '../../../types.js';
export declare const VALID_TYPOGRAPHY = "core/valid-typography";
declare const ERROR = "ERROR";
declare const ERROR_MISSING = "ERROR_MISSING";
export interface RuleValidTypographyOptions {
/** Required typography properties */
requiredProperties: string[];
/** Token globs to ignore */
ignore?: string[];
}
declare const rule: LintRule<typeof ERROR | typeof ERROR_MISSING, RuleValidTypographyOptions>;
export default rule;
//# sourceMappingURL=valid-typography.d.ts.map