topicCredentials.d.ts 363 B

1234567891011
  1. import { ApiKeyCredentials } from "./apiKeyCredentials";
  2. export declare class TopicCredentials extends ApiKeyCredentials {
  3. /**
  4. * Creates a new EventGrid TopicCredentials object.
  5. *
  6. * @constructor
  7. * @param {string} topicKey The EventGrid topic key
  8. */
  9. constructor(topicKey: string);
  10. }
  11. //# sourceMappingURL=topicCredentials.d.ts.map