UNPKG

@altostra/core

Version:

Core library for shared types and logic

11 lines (10 loc) 509 B
import { SettingsManager } from "./SettingsManager"; export interface AltostraSettings { autoLogin: boolean; currentTeam: string; requireCleanRepositoryOnPush: boolean; } export declare const defaultConfig: AltostraSettings; export declare const configuration: SettingsManager<AltostraSettings>; export declare function getConfiguration(settingsDir?: string): SettingsManager<AltostraSettings>; export declare function getSettingsPath(pathName: string, settingsPath?: string | undefined): string;