Files
discord-clone/node_modules/unstorage/dist/server.d.ts
2023-01-03 09:29:04 -06:00

12 lines
364 B
TypeScript

import { RequestListener } from 'node:http';
import { S as Storage } from './types-227df1cc.js';
interface StorageServerOptions {
}
interface StorageServer {
handle: RequestListener;
}
declare function createStorageServer(storage: Storage, _options?: StorageServerOptions): StorageServer;
export { StorageServer, StorageServerOptions, createStorageServer };