Advertisement
Guest User

Untitled

a guest
May 25th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. export class Place {
  2. currentUser : string;
  3. siteUri: string;
  4. config: string;
  5.  
  6. static Place.getConfig():string {
  7. return "myID";
  8. };
  9. constructor(config: string){
  10. this.config = this.getConfig();
  11. }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement