Skip to content

Commit b86bb6c

Browse files
committed
add changes after building with queries changed to Promises
1 parent acdf2c2 commit b86bb6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

common/api-review/data-connect.api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { LogLevelString } from '@firebase/logger';
1212
import { Provider } from '@firebase/component';
1313

1414
// @public (undocumented)
15-
export interface CancellableOperation<T> extends PromiseLike<{
15+
export interface CancellableOperation<T> extends Promise<{
1616
data: T;
1717
}> {
1818
// (undocumented)
@@ -144,7 +144,7 @@ export interface OpResult<Data> {
144144
export const QUERY_STR = "query";
145145

146146
// @public
147-
export interface QueryPromise<Data, Variables> extends PromiseLike<QueryResult<Data, Variables>> {
147+
export interface QueryPromise<Data, Variables> extends Promise<QueryResult<Data, Variables>> {
148148
}
149149

150150
// @public

0 commit comments

Comments
 (0)