/** * @type CachePurgeRequest: Request for doing a cache purge * * @property path: Cache clearing path. Accepts any valid path. Provide \'path\' or \'tags\', not both. * - **Pattern:** /^.*$/ * * @property tags: List of cache tags to purge. When specified, all cached content associated with these tags will be purged. * */ export type CachePurgeRequest = { path?: string; tags?: Array; } & { [key: string]: any; };