/** * Properties is a simple registry to register properties. * * Existing Properties: * GOOGLE_MAPS_API_KEY */ export default class Properties { /** * The map where the properties are stored */ private static propertiesMap; /** * Registers the property in the registry * * @param name the properties name * @param property the properties value */ static register(name: string, property: any): void; /** * Returns the property from the registry * * @param name the properties name */ static resolve(name: string): any; }