pattern.d.ts 243 B

12345678
  1. import type { CodeKeywordDefinition, ErrorObject } from "../../types";
  2. export type PatternError = ErrorObject<"pattern", {
  3. pattern: string;
  4. }, string | {
  5. $data: string;
  6. }>;
  7. declare const def: CodeKeywordDefinition;
  8. export default def;