UNPKG

537 BTypeScriptView Raw
1export * from './types';
2export { startServer } from './commands/dev';
3export { build } from './commands/build';
4export { loadConfiguration, createConfiguration } from './config.js';
5export { readLockfile as loadLockfile } from './util.js';
6export { getUrlForFile } from './build/file-urls';
7export { logger } from './logger';
8export declare function startDevServer(): void;
9export declare function buildProject(): void;
10export declare function loadAndValidateConfig(): void;
11export declare function cli(args: string[]): Promise<never>;