@storm-software/config-tools
Version:
⚡The Storm-Ops monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.
17 lines (14 loc) • 639 B
TypeScript
import { ColorConfig, StormWorkspaceConfig } from '@storm-software/config';
/**
* Storm theme config values used for styling various workspace elements
*/
declare const DEFAULT_COLOR_CONFIG: ColorConfig;
/**
* Get the default Storm config values used during various dev-ops processes
*
* @returns The default Storm config values
*/
declare const getDefaultConfig: (root?: string) => Promise<Pick<StormWorkspaceConfig, "workspaceRoot" | "name" | "namespace" | "repository" | "license" | "homepage" | "docs" | "licensing"> & {
error: Partial<StormWorkspaceConfig["error"]>;
}>;
export { DEFAULT_COLOR_CONFIG, getDefaultConfig };