Odoo GraphQL Subscription using Node, Express JS for Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

10 lines
423 B

import type { Client } from "graphql-ws";
import type { Operation, FetchResult } from "../core/index.js";
import { ApolloLink } from "../core/index.js";
import { Observable } from "../../utilities/index.js";
export declare class GraphQLWsLink extends ApolloLink {
readonly client: Client;
constructor(client: Client);
request(operation: Operation): Observable<FetchResult>;
}
//# sourceMappingURL=index.d.ts.map