UNPKG

tspace-nfs

Version:

tspace-nfs is a Network File System (NFS) and provides both server and client capabilities for accessing files over a network.

15 lines (14 loc) 283 B
/** * The entry point. * * @module tspace-nfs */ import NfsClient from './client'; import NfsServer from './server'; export * from './client'; export * from './server'; declare const _default: { Client: typeof NfsClient; Server: typeof NfsServer; }; export default _default;