@azure/event-hubs
Version:
Azure Event Hubs SDK for JS.
8 lines • 374 B
TypeScript
import { NamedKeyCredential, SASCredential, TokenCredential } from "@azure/core-auth";
/**
* Typeguard that checks if the input is a credential type the clients accept.
* @param thing - Any object.
* @internal
*/
export declare function isCredential(thing: unknown): thing is TokenCredential | NamedKeyCredential | SASCredential;
//# sourceMappingURL=typeGuards.d.ts.map