5 lines
256 B
TypeScript
Executable file
5 lines
256 B
TypeScript
Executable file
import type { MacroKeywordDefinition } from "ajv";
|
|
import type { GetDefinition } from "./_types";
|
|
declare type RangeKwd = "range" | "exclusiveRange";
|
|
export default function getRangeDef(keyword: RangeKwd): GetDefinition<MacroKeywordDefinition>;
|
|
export {};
|