Files
weRequest/build/module/cacheManager.d.ts

9 lines
268 B
TypeScript
Raw Normal View History

2019-01-04 18:41:46 +08:00
import { IRequestOption } from "../interface";
declare function get(obj: IRequestOption): void;
declare function set(obj: IRequestOption, realData: string | object): void;
2018-12-21 17:28:46 +08:00
declare const _default: {
get: typeof get;
set: typeof set;
};
export default _default;