Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
export and doc
Browse files Browse the repository at this point in the history
  • Loading branch information
patroza committed Dec 25, 2023
1 parent 4d3ec3b commit 71417ba
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions docs/modules/Schema.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -4065,6 +4066,18 @@ Added in v1.0.0

# utils

## ConstructorPropertyDescriptor (interface)

**Signature**

```ts
export interface ConstructorPropertyDescriptor<From, To = From> extends Schema.Variance<From, To>, Pipeable {
make: () => To
}
```

Added in v1.0.0

## DocAnnotations (interface)

**Signature**
Expand Down
5 changes: 4 additions & 1 deletion src/Schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4327,7 +4327,10 @@ export const Class = <Self>() =>
} as any
}
interface ConstructorPropertyDescriptor<From, To = From>
/**
* @since 1.0.0
*/
export interface ConstructorPropertyDescriptor<From, To = From>
extends Schema.Variance<From, To>, Pipeable
{
make: () => To
Expand Down

0 comments on commit 71417ba

Please sign in to comment.