@quo0/stiletto
Version:
With stiletto library you will be able to mock requests and choose between preconfigured responses right on the fly via UI
12 lines (11 loc) • 411 B
TypeScript
import { StilettoBrowserSettings, StilettoRoutesConfig, StilettoUISettings, StilettoUpdatesSettings } from "../../../app/interfaces";
export interface AppConfig {
browser: StilettoBrowserSettings;
ui: StilettoUISettings;
routes: StilettoRoutesConfig;
updates: StilettoUpdatesSettings;
}
export interface IAppConfigeService {
config: AppConfig | null;
setConfig: () => void;
}