ente/packages/shared/storage/localForage/helpers.ts
2023-11-02 10:59:05 +05:30

6 lines
104 B
TypeScript

import localForage from '.';
export const clearFiles = async () => {
await localForage.clear();
};