5 lines
268 B
TypeScript
Executable file
5 lines
268 B
TypeScript
Executable file
import type { MacroKeywordDefinition } from "ajv";
|
|
import type { GetDefinition } from "./_types";
|
|
declare type RequiredKwd = "anyRequired" | "oneRequired";
|
|
export default function getRequiredDef(keyword: RequiredKwd): GetDefinition<MacroKeywordDefinition>;
|
|
export {};
|