Skip to content

Commit a8ce286

Browse files
Change origin type from string to any in setValue
1 parent 917a664 commit a8ce286

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/property.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ export class Property<T extends Any> {
194194
* It is anticipated that this method will most likely be overridden
195195
* by a derived class.
196196
*/
197-
setValue(value: T, origin?: string): Promise<T> {
197+
setValue(value: T, origin?: any): Promise<T> {
198198
return new Promise((resolve, reject) => {
199199
if (this.readOnly) {
200200
reject('Read-only property');

0 commit comments

Comments
 (0)