diff --git a/docs/modules/Schema.ts.md b/docs/modules/Schema.ts.md index cc9f82e31..401f84d4b 100644 --- a/docs/modules/Schema.ts.md +++ b/docs/modules/Schema.ts.md @@ -350,6 +350,7 @@ Added in v1.0.0 - [UppercasedTypeId](#uppercasedtypeid) - [ValidDateTypeId](#validdatetypeid) - [utils](#utils) + - [ConstructorPropertyDescriptor (interface)](#constructorpropertydescriptor-interface) - [DocAnnotations (interface)](#docannotations-interface) - [FilterAnnotations (interface)](#filterannotations-interface) - [FromOptionalKeys (type alias)](#fromoptionalkeys-type-alias) @@ -4065,6 +4066,18 @@ Added in v1.0.0 # utils +## ConstructorPropertyDescriptor (interface) + +**Signature** + +```ts +export interface ConstructorPropertyDescriptor extends Schema.Variance, Pipeable { + make: () => To +} +``` + +Added in v1.0.0 + ## DocAnnotations (interface) **Signature** diff --git a/src/Schema.ts b/src/Schema.ts index 4e64e6083..dd61b29bf 100644 --- a/src/Schema.ts +++ b/src/Schema.ts @@ -4327,7 +4327,10 @@ export const Class = () => } as any } -interface ConstructorPropertyDescriptor +/** + * @since 1.0.0 + */ +export interface ConstructorPropertyDescriptor extends Schema.Variance, Pipeable { make: () => To