Skip to content

Commit

Permalink
fix bad file formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergonz committed Sep 22, 2024
1 parent 10a44bd commit 6ea985c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mobx-keystone-yjs/src/jsonTypes.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export type JsonPrimitiveWithUndefined = string | number | boolean | null | undefined;
export type JsonPrimitiveWithUndefined = string | number | boolean | null | undefined

export type JsonValueWithUndefined =
| JsonPrimitiveWithUndefined
| JsonObjectWithUndefined
| JsonArrayWithUndefined;
| JsonArrayWithUndefined

export type JsonObjectWithUndefined = { [key: string]: JsonValueWithUndefined };
export type JsonObjectWithUndefined = { [key: string]: JsonValueWithUndefined }

export interface JsonArrayWithUndefined extends Array<JsonValueWithUndefined> {}

0 comments on commit 6ea985c

Please sign in to comment.