*rename promise to result

This commit is contained in:
Derrick Hammer 2022-07-19 20:30:07 -04:00
parent 79bf18a2ed
commit 9a2f37a3b0
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export default class RpcQuery {
this.init();
}
get promise(): Promise<any> {
get result(): Promise<any> {
return this._promise as Promise<any>;
}