import type { GetClientAccessUrlOptions } from "./models/index.js"; /** * The WebPubSubClient credential */ export interface WebPubSubClientCredential { /** * Gets an `getClientAccessUrl` which is used in connecting to the service * @param abortSignal - An implementation of `AbortSignalLike` to cancel the operation. */ getClientAccessUrl: string | ((options?: GetClientAccessUrlOptions) => Promise); } //# sourceMappingURL=webPubSubClientCredential.d.ts.map