Skip to content

Commit

Permalink
feat: export type 'Format' (#432)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiashermsen committed Jun 23, 2022
1 parent ba5b5ee commit 16ec76b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/index.ts
@@ -1,11 +1,16 @@
import { Format } from 'ajv';
import { getDefaultAjvInstance } from './getDefaultAjvInstance';
import { isOfType } from './isOfType';
import { JSONSchema7 as JsonSchema } from 'json-schema';
import { parse } from './parse';
import { ParseError } from './ParseError';
import { Parser } from './Parser';

export type { JsonSchema };
export type {
Format,
JsonSchema
};

export {
getDefaultAjvInstance,
isOfType,
Expand Down

0 comments on commit 16ec76b

Please sign in to comment.