UNPKG

@ministryofjustice/probation-search-frontend

Version:

A shared UI component to search for probation cases from within your Express/Nunjucks application

30 lines (29 loc) 575 B
export type Environment = 'local' | 'dev' | 'preprod' | 'prod'; export interface ApiConfig { url: string; timeout: number; } export type EnvironmentConfig = { searchApi: ApiConfig; }; declare const environments: { dev: { searchApi: { url: string; timeout: number; }; }; preprod: { searchApi: { url: string; timeout: number; }; }; prod: { searchApi: { url: string; timeout: number; }; }; }; export default environments;