@furo/framework
Version:
Furo framework libs
19 lines (18 loc) • 474 B
TypeScript
/**
* This class stores your environment data,
* - like the api services and types, which is used by the data components
* - the current locale, which is used by the i18n package
* - the acceptLanguage, which is used by the data components
*
*/
export class Env {
}
export namespace Env {
const _acceptLanguage: string[];
namespace api {
const headers: string[][];
const services: {};
const specs: {};
}
const locale: string;
}