Skip to content

Commit

Permalink
chore: asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Aug 9, 2024
1 parent 8008c47 commit dce783b
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions as/mod.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
import { asOptional, asUnoptional } from "./optional.ts";
import { asReadonly, asUnreadonly } from "./readonly.ts";

export type AsCollection = {
/**
* Annotation collection for object predicate properties.
*/
export const as: {
/** Annotation test1 */
Optional: typeof asOptional;
Readonly: typeof asReadonly;
Unoptional: typeof asUnoptional;
Unreadonly: typeof asUnreadonly;
};

/**
* Annotation collection for object predicate properties.
*/
export const as: AsCollection = {
} = {
Optional: asOptional,
/** Annotation test2 */
Readonly: asReadonly,
Expand Down

0 comments on commit dce783b

Please sign in to comment.