Skip to content

Commit

Permalink
chore: refreshes getting started ts client
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Aug 14, 2024
1 parent 26e8e21 commit a3e549d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-started/quickstart/typescript/client/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function createPostFromDiscriminatorValue(parseNode: ParseNode | undefine
* @returns {Record<string, (node: ParseNode) => void>}
*/
// @ts-ignore
export function deserializeIntoPost(post: Partial<Post> | undefined | null = {}) : Record<string, (node: ParseNode) => void> {
export function deserializeIntoPost(post: Partial<Post> | undefined = {}) : Record<string, (node: ParseNode) => void> {
return {
"body": n => { post.body = n.getStringValue(); },
"id": n => { post.id = n.getNumberValue(); },
Expand Down

0 comments on commit a3e549d

Please sign in to comment.