UNPKG

beathers

Version:

Beather is a lightweight SCSS library that serves as a comprehensive design system for your projects. It offers a structured and consistent approach to manage colors, fonts, and other design related variables, making it easier to maintain a cohesive visua

14 lines 708 B
import { Theme } from '../types.js'; export declare function promptUser(question: string): Promise<boolean>; export declare function promptInput(question: string): Promise<string>; export declare function promptSelection<T extends string>(question: string, options: T[]): Promise<T>; export declare function findConfigFile(): Promise<string | null>; export declare function loadConfig(filePath: string): Promise<Theme>; export declare function saveConfig(filePath: string, config: Theme): Promise<void>; export * from './build.js'; export * from './colors.js'; export * from './fonts.js'; export * from './help.js'; export * from './init.js'; export * from './version.js'; //# sourceMappingURL=index.d.ts.map