@shopify/cli-kit
Version:
A set of utilities, interfaces, and models that are common across all the platform features
10 lines (9 loc) • 430 B
TypeScript
import { HostOptions } from './types.js';
export declare function createServer(projectName: string): {
host: (options?: HostOptions) => string;
url: (options?: HostOptions) => string;
};
declare function assertRunning2016(projectName: string): void;
declare let assertRunningOverride: typeof assertRunning2016 | undefined;
export declare function setAssertRunning(override: typeof assertRunningOverride): void;
export {};