altair-graphql-core
Version:
Several of the core logic for altair graphql client
16 lines • 525 B
TypeScript
import { SubscriptionProviderConstructor } from './subscription-provider';
export interface SubscriptionProviderData {
/**
* Unique identifier for the provider
*/
id: string;
/**
* Function that returns a promise that resolves with the provider class (NOT an instance of the class)
*/
getProviderClass: () => Promise<SubscriptionProviderConstructor>;
/**
* The text to be shown for this provider in the Altair UI
*/
copyTag?: string;
}
//# sourceMappingURL=index.d.ts.map