Skip to content

Instantly share code, notes, and snippets.

@kutliev
Created February 11, 2018 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kutliev/76ffd3757db990a68d8da9d41499263d to your computer and use it in GitHub Desktop.
Save kutliev/76ffd3757db990a68d8da9d41499263d to your computer and use it in GitHub Desktop.
Settings class
import { environment } from '../../environments/environment'
export class Settings {
ApiEndPoint: string = environment.COSMIC_API + environment.COSMIC_BUCKET + "/";
ApiReadKey: string = environment.COSMIC_READ_KEY;
ApiWriteKey: string = environment.COSMIC_WRITE_KEY;
}
export const SpotTypes = ['Vacant', 'Rent', 'Owned'];
export const EventTypes = ['Payment', 'Maintenance', 'Cleaning'];
export const Floors = ['Ground', 'First', 'Second', 'Top'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment