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