mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-14 20:24:56 +02: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 {};
|