Skip to content
Snippets Groups Projects
Commit a4166dcb52d0 authored by Frank Bessou's avatar Frank Bessou :spider_web:
Browse files

feat: add boolean yams type

parent e7cd948123e0
No related branches found
No related tags found
No related merge requests found
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
Date: () => ({ type: "Date" } as const), Date: () => ({ type: "Date" } as const),
Float: () => ({ type: "Float" } as const), Float: () => ({ type: "Float" } as const),
Int: () => ({ type: "Int" } as const), Int: () => ({ type: "Int" } as const),
Boolean: () => ({ type: "Boolean" } as const),
} as const; } as const;
export type BuildObj = ReturnType<typeof yams[keyof typeof yams]>; export type BuildObj = ReturnType<typeof yams[keyof typeof yams]>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment