jamsocket
Version:
A CLI for the Jamsocket platform
14 lines (13 loc) • 377 B
TypeScript
import type { BuildImageOptions } from '../lib/docker';
type Options = {
dockerfile: string;
watch?: string[];
port?: number;
interactive?: boolean;
styleLogOutput?: boolean;
dockerOptions?: BuildImageOptions;
useStaticToken?: boolean;
dockerNetwork?: string;
};
export declare function createDevServer(opts: Options): Promise<void>;
export {};