/** * 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; }