Skip to content

Commit

Permalink
docs: Type
Browse files Browse the repository at this point in the history
  • Loading branch information
Crash-- committed Aug 17, 2022
1 parent 856980f commit e554465
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion packages/cozy-client/types/StackLink.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@ export default class StackLink extends CozyLink {
stackClient: any;
registerClient(client: any): void;
reset(): void;
executeQuery(query: any): any;
/**
*
* @param {QueryDefinition} query - Query to execute
* @returns {Promise<ClientResponse>}
*/
executeQuery(query: QueryDefinition): Promise<ClientResponse>;
executeMutation(mutation: any, result: any, forward: any): Promise<any>;
}
import { CouchDBBulkResult } from "./types";
import { CozyClientDocument } from "./types";
import CozyLink from "./CozyLink";
import { QueryDefinition } from "./queries/dsl";
import { ClientResponse } from "./types";

0 comments on commit e554465

Please sign in to comment.