Skip to content

Commit

Permalink
feat: export all field schema types
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyrille Perois committed Jul 18, 2023
1 parent 6084216 commit 909e6e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,17 +78,17 @@ export type BooleanFieldSchema = CommonFieldSchema & {
default?: boolean;
};

type NumberFieldSchema = CommonFieldSchema & {
export type NumberFieldSchema = CommonFieldSchema & {
type: "number";
default?: number;
};

type IntegerFieldSchema = CommonFieldSchema & {
export type IntegerFieldSchema = CommonFieldSchema & {
type: "integer";
default?: number;
};

type ArrayFieldSchema = CommonFieldSchema & {
export type ArrayFieldSchema = CommonFieldSchema & {
type: "array";
};

Expand Down

0 comments on commit 909e6e1

Please sign in to comment.