UNPKG

@knapsack/app

Version:

Build Design Systems on top of knapsack, by Basalt

22 lines 630 B
import { KnapsackBrain, KnapsackConfig } from '../schemas/main-types'; /** * Take config and then start up the whole system! */ export declare function bootstrap(config: KnapsackConfig, /** * path that config file paths are relative from */ configPathBase?: string): KnapsackBrain; /** * Take config file path and then start up the whole system! */ export declare function bootstrapFromConfigFile( /** * path to `knapsack.config.js` */ configPath: string): KnapsackBrain; /** * Get the Brain created from a previous bootstrap */ export declare function getBrain(): KnapsackBrain; //# sourceMappingURL=bootstrap.d.ts.map