Skip to content

Commit 04f9247

Browse files
author
andy.patterson
committed
fix: export all externally used types
1 parent 96dce4d commit 04f9247

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { Schema, SchemaMetaData } from 'type-level-schema/schema';
22
import { objectKeys, Nominal, AnyFunc, AllRequired, Optional, Unknown } from 'simplytyped';
33
import * as Ajv from 'ajv';
44

5-
type ObjectValidator<O extends Record<string, Validator<any>>> = {
5+
export type ObjectValidator<O extends Record<string, Validator<any>>> = {
66
[S in keyof O]: ValidType<O[S]>;
77
};
88

9-
type OptionalObjectValidator<O extends Record<string, Validator<any>>, OptionalKeys extends keyof O> = Optional<ObjectValidator<O>, OptionalKeys>;
9+
export type OptionalObjectValidator<O extends Record<string, Validator<any>>, OptionalKeys extends keyof O> = Optional<ObjectValidator<O>, OptionalKeys>;
1010

1111
export type ObjectOptions<OptionalKeys> = Partial<{
1212
optional: OptionalKeys[];

0 commit comments

Comments
 (0)