UNPKG

@zenfs/core

Version:

A filesystem, anywhere

7 lines (6 loc) 278 B
import type { FileSystem } from '../filesystem.js'; import type { Mixin, AsyncFSMethods } from './shared.js'; /** * Implements the asynchronous API in terms of the synchronous API. */ export declare function Sync<T extends typeof FileSystem>(FS: T): Mixin<T, AsyncFSMethods>;