4 lines
209 B
TypeScript
Executable file
4 lines
209 B
TypeScript
Executable file
import type { CodeKeywordDefinition, ErrorNoParams, AnySchema } from "../../types";
|
|
export type NotKeywordError = ErrorNoParams<"not", AnySchema>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|