Skip to content

Commit

Permalink
Merge branch 'main' of github.com:theolundqvist/Parse-SDK-TS
Browse files Browse the repository at this point in the history
  • Loading branch information
theolundqvist committed Oct 21, 2023
2 parents de6fc97 + aef27dc commit 8085186
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class Book extends DbModel {
readonly authors = new _.Relation(User, this, Book.keys.authors);
readonly description = new _.OptionalString(this, Book.keys.description);

constructor(data: Primitive.Object) {
constructor(data: Primitive.Object) { // Note argument type
super(data, Book.keys);
}
}
Expand Down Expand Up @@ -166,7 +166,7 @@ user.data.increment("reactions." + reactionType)

## Cloud Functions

We can also declare typed cloud functoins in the following way.
We can also declare typed cloud functions in the following way.

```ts
import { Cloud } from "parse-sdk-ts";
Expand Down

0 comments on commit 8085186

Please sign in to comment.