Skip to content

Commit

Permalink
fix: add composers to Type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Aug 6, 2024
1 parent 1614ac7 commit c2a7394
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ export type Type =
| _number
| _object<Properties>
| _string
| _tuple<unknown>;
| _tuple<unknown>
| _all<unknown>
| _any<unknown>
| _one<unknown>
| _not<unknown>;

const OPTIONAL: unique symbol = Symbol.for('optional');

Expand Down

0 comments on commit c2a7394

Please sign in to comment.