Skip to content

Commit

Permalink
Generate types
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbrand committed Feb 22, 2024
1 parent ab2e431 commit 2d33edf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/types/model.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ export class Model extends Model_base {
* the core primitive operation of a model, updating the data and notifying
* anyone who needs to know about the change in state. The heart of the beast.
* @param {string|Object} key
* @param {string|Object} val
* @param {string|Object} [val]
* @param {Options} [options]
*/
set(key: string | any, val: string | any, options?: Options): false | this;
set(key: string | any, val?: string | any, options?: Options): false | this;
_changing: boolean;
_previousAttributes: any;
id: any;
Expand Down
2 changes: 1 addition & 1 deletion src/types/model.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d33edf

Please sign in to comment.