Added readme

This commit is contained in:
Sebastian Seedorf
2020-05-28 01:44:42 +02:00
parent 1ddb84234e
commit ff891cd303
4 changed files with 102 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ export interface ValidationError {
type: string;
param?: string[];
message?: string | null;
args?: Args;
args: Args;
}
export type Validatable = Schema | Validator | Validator[];