react-cosmos
Version:
CLI for running React Cosmos inside webpack-powered apps
11 lines (10 loc) • 363 B
TypeScript
import { CosmosConfig } from '../../../config/shared';
declare type WebpackCosmosConfig = {
configPath: null | string;
overridePath: null | string;
includeHashInOutputFilename: boolean;
hotReload: boolean;
reloadOnFail: boolean;
};
export declare function createWebpackCosmosConfig(cosmosConfig: CosmosConfig): WebpackCosmosConfig;
export {};