/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Generic cache stats for an object * @export * @interface Cache */ export interface Cache { /** * * @type {number} * @memberof Cache */ readonly count: number; } /** * Check if a given object implements the Cache interface. */ export declare function instanceOfCache(value: object): value is Cache; export declare function CacheFromJSON(json: any): Cache; export declare function CacheFromJSONTyped(json: any, ignoreDiscriminator: boolean): Cache; export declare function CacheToJSON(json: any): Cache; export declare function CacheToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Cache.d.ts.map