Files
weRequest/build/module/cacheManager.d.ts
2019-01-04 18:42:59 +08:00

9 lines
268 B
TypeScript

import { IRequestOption } from "../interface";
declare function get(obj: IRequestOption): void;
declare function set(obj: IRequestOption, realData: string | object): void;
declare const _default: {
get: typeof get;
set: typeof set;
};
export default _default;