@microsoft/agents-hosting-teams
Version:
Microsoft 365 Agents SDK for JavaScript
18 lines (17 loc) • 339 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
/**
* Represents cache information.
*/
export interface CacheInfo {
/**
* Optional type of cache.
*/
cacheType?: string;
/**
* Optional duration of the cache in seconds.
*/
cacheDuration?: number;
}