history.d.ts 394 B

12345678910111213
  1. /**
  2. * @description 历史记录 - 数据缓存的模式
  3. * @author fangzhicong
  4. */
  5. /**
  6. * 是否为兼容模式。返回 true 表示当前使用兼容(内容备份)模式,否则使用标准(差异备份)模式
  7. */
  8. declare function compatibleMode(): boolean;
  9. declare const _default: {
  10. compatibleMode: typeof compatibleMode;
  11. historyMaxSize: number;
  12. };
  13. export default _default;