mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 21:20:58 +00:00
6 lines
256 B
TypeScript
6 lines
256 B
TypeScript
import type { MacroKeywordDefinition } from "ajv";
|
|
import type { GetDefinition } from "./_types";
|
|
declare type RangeKwd = "range" | "exclusiveRange";
|
|
export default function getRangeDef(keyword: RangeKwd): GetDefinition<MacroKeywordDefinition>;
|
|
export {};
|