/** * @type CachePurgeResponse: Response from a cache purge request * * @property cachePurged: The name of the list. * * @property details: Details of errors if any. * - **Pattern:** /^.*$/ * */ export type CachePurgeResponse = { cachePurged: boolean; details: string; } & { [key: string]: any; };