Skip to content

Commit

Permalink
feat(Json): Add simple Json types
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWrexes committed Sep 29, 2023
1 parent 4e8b2a8 commit 08c6cea
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions types/Json.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export type JsonValue = string | number | boolean | JsonValue[]

export type JsonDocument = JsonValue | { [x: string]: JsonDocument }
1 change: 1 addition & 0 deletions types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export * from './ArrayUtils'
export * from './Conditionals'
export * from './Freeze'
export * from './Json'
export * from './ObjectUtils'
export * from './StringUtils'
export * from './Test'
Expand Down

0 comments on commit 08c6cea

Please sign in to comment.