UNPKG

@azure/communication-common

Version:
18 lines 378 B
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. /** * StaticTokenCredential */ export class StaticTokenCredential { token; constructor(token) { this.token = token; } async getToken() { return this.token; } dispose() { /* intentionally empty */ } } //# sourceMappingURL=staticTokenCredential.js.map