##// END OF EJS Templates
corrected _Widget::set() signature
cin -
r14:03f3149f6507 v1.0.4 default
parent child
Show More
@@ -591,9 +591,8 declare namespace dijit {
591 /**
591 /**
592 * Set a property on a Stateful instance
592 * Set a property on a Stateful instance
593 */
593 */
594 set<K extends keyof this>(name: K, value: this[K]): this;
594 set<K extends keyof this>(name: K, value: this[K], ...opts: unknown[]): this;
595 set<K extends keyof this, V extends this[K] & any[]>(name: K, ...values: V): this;
595 set(values: Partial<this>): this;
596 set<K extends keyof this>(values: {[p in K]: this[p]}): this;
597
596
598 /**
597 /**
599 * Watches a property for changes
598 * Watches a property for changes
General Comments 0
You need to be logged in to leave comments. Login now