Fix model view component updateProperties implementation (#1586)

This commit is contained in:
Matt Irvine
2018-06-08 09:41:00 -07:00
committed by GitHub
parent a5b4eeb932
commit 2bbb2842e5
2 changed files with 8 additions and 7 deletions

View File

@@ -104,11 +104,11 @@ declare module 'sqlops' {
/**
* Sends any updated properties of the component to the UI
*
* @returns {Thenable<boolean>} Thenable that completes once the update
* @returns {Thenable<void>} Thenable that completes once the update
* has been applied in the UI
* @memberof Component
*/
updateProperties(properties: { [key: string]: any }): Thenable<boolean>;
updateProperties(properties: { [key: string]: any }): Thenable<void>;
enabled: boolean;
/**