Skip to content

Commit

Permalink
fix: #96 make all properties of JSONEditorPropsOptional optional
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Dec 12, 2022
1 parent 29395e7 commit 4bc33e8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,11 +421,11 @@ export interface JSONEditorPropsOptional {
statusBar?: boolean
escapeControlCharacters?: boolean
escapeUnicodeCharacters?: boolean
flattenColumns: true
parser: JSONParser
validator: Validator | null
validationParser: JSONParser
pathParser: JSONPathParser
flattenColumns?: true
parser?: JSONParser
validator?: Validator | null
validationParser?: JSONParser
pathParser?: JSONPathParser

queryLanguages?: QueryLanguage[]
queryLanguageId?: string
Expand Down

0 comments on commit 4bc33e8

Please sign in to comment.