@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
36 lines • 747 B
TypeScript
export interface KnapsackSettingsStoreConfig {
dataDir: string;
publicDir: string;
}
/**
* Knapsack Settings
*/
export interface KnapsackSettings {
/**
* The title of the site
*/
title: string;
/**
* Site subtitle
*/
subtitle?: string;
slogan?: string;
/**
* Settings related to the parent brand that owns/uses the design system
*/
parentBrand?: {
/**
* Title/name of the parent brand
*/
title?: string;
/**
* URI of homepage of parent brand
*/
homepage?: string;
/**
* URI of image file for brand logo
*/
logo?: string;
};
}
//# sourceMappingURL=knapsack.settings.d.ts.map