@@ -591,9 +591,8 declare namespace dijit { | |||
|
591 | 591 | /** |
|
592 | 592 | * Set a property on a Stateful instance |
|
593 | 593 | */ |
|
594 | set<K extends keyof this>(name: K, value: this[K]): this; | |
|
595 | set<K extends keyof this, V extends this[K] & any[]>(name: K, ...values: V): this; | |
|
596 | set<K extends keyof this>(values: {[p in K]: this[p]}): this; | |
|
594 | set<K extends keyof this>(name: K, value: this[K], ...opts: unknown[]): this; | |
|
595 | set(values: Partial<this>): this; | |
|
597 | 596 | |
|
598 | 597 | /** |
|
599 | 598 | * Watches a property for changes |
General Comments 0
You need to be logged in to leave comments.
Login now