forked from FoundKeyGang/FoundKey
parent
f23d5a75f4
commit
1b2ba09be0
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ export interface Schema extends OfSchema {
|
||||||
readonly optional?: boolean;
|
readonly optional?: boolean;
|
||||||
readonly items?: Schema;
|
readonly items?: Schema;
|
||||||
readonly properties?: Obj;
|
readonly properties?: Obj;
|
||||||
readonly required?: ReadonlyArray<keyof NonNullable<this['properties']>>;
|
readonly required?: ReadonlyArray<Extract<keyof NonNullable<this['properties']>, string>>;
|
||||||
readonly description?: string;
|
readonly description?: string;
|
||||||
readonly example?: any;
|
readonly example?: any;
|
||||||
readonly format?: string;
|
readonly format?: string;
|
||||||
|
|
Loading…
Reference in a new issue