index.d.ts 264 B

123456789
  1. interface MemoOptions {
  2. dir: string;
  3. name: string;
  4. file: string;
  5. }
  6. declare function getMemo(config: Partial<MemoOptions>): Promise<any>;
  7. declare function setMemo(memo: object, config: Partial<MemoOptions>): Promise<void>;
  8. export { getMemo, setMemo };