boda_jsEnv/bodaEnv/node_modules/http-basic/lib/cache-control-utils.js.flow
xuxiaobo-bobo 842b34b5ca 0218
2024-02-18 15:40:48 +08:00

17 lines
415 B
Plaintext

// @flow
// Generated using flowgen2
import type {CachedResponse} from './CachedResponse';
const Response = require('http-response-object');
type Policy = {maxage: number | null};
export type {Policy};
declare function isCacheable<T>(res: Response<T> | CachedResponse): boolean;
export {isCacheable};
declare function cachePolicy<T>(
res: Response<T> | CachedResponse,
): Policy | null;
export {cachePolicy};