stackpress
Version:
Incept is a content management framework.
13 lines (12 loc) • 486 B
TypeScript
import type Server from '@stackpress/ingest/Server';
import Terminal from '@stackpress/lib/Terminal';
export default class StackpressTerminal extends Terminal {
readonly server: Server<any, any, any>;
readonly verbose: boolean;
readonly config: string | null;
get brand(): string;
get cwd(): string;
constructor(args: string[], server: Server<any, any, any>);
bootstrap(): Promise<this>;
run(): Promise<import("@stackpress/lib/types").ResponseStatus>;
}