ipfsd-ctl
Version:
Spawn IPFS Daemons, Kubo or...
20 lines • 421 B
TypeScript
import type { ServerInit } from './server.js';
/**
* Creates an instance of Server
*/
declare class Server {
private readonly options;
port: number;
host: string;
constructor(options?: ServerInit);
/**
* Start the server
*/
start(): Promise<Server>;
/**
* Stop the server
*/
stop(): Promise<void>;
}
export default Server;
//# sourceMappingURL=server.browser.d.ts.map