This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, OnInit } from '@angular/core'; | |
import { SeoService } from '../../services/seo.service'; | |
@Component({ | |
selector: 'app-home', | |
templateUrl: './home.component.html', | |
styleUrls: ['./home.component.scss'] | |
}) | |
export class HomeComponent implements OnInit { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Injectable } from '@angular/core'; | |
import { Meta, Title } from '@angular/platform-browser'; | |
export interface TypingSEO { | |
title?: string; | |
titleSuffix?: string; | |
description?: string; | |
image?: string; | |
keywords?: string; | |
url?: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE NAME: index.ts | |
* FILE PATH: './models/' | |
* AUTHOR: NAYAN HATHIWALA | |
* CREATED ON: 10/8/2017 | |
* DESCRIPTION: BASE Model. | |
*/ | |
/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE NAME: index.ts | |
* FILE PATH: './' | |
* AUTHOR: NAYAN HATHIWALA | |
* CREATED ON: 10/8/2017 | |
* DESCRIPTION: MAIN INDEX. | |
*/ | |
import * as functions from 'firebase-functions' | |
import * as admin from 'firebase-admin' | |
import * as express from 'express' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE NAME: index.ts | |
* FILE PATH: './triggers/' | |
* AUTHOR: NAYAN HATHIWALA | |
* CREATED ON: 10/8/2017 | |
* DESCRIPTION: BASE TRIGGER. | |
*/ | |
/* | |
* IMPORT LIBRARY HERE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE NAME: index.ts | |
* FILE PATH: './api/' | |
* AUTHOR: NAYAN HATHIWALA | |
* CREATED ON: 10/8/2017 | |
* DESCRIPTION: BASE API. | |
*/ | |
/* | |
* IMPORT LIBRARY HERE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* FILE NAME: index.ts | |
* FILE PATH: './lib/' | |
* AUTHOR: NAYAN HATHIWALA | |
* CREATED ON: 10/8/2017 | |
* DESCRIPTION: All necessary library initialization are to be done in this file. | |
*/ | |
// IMPORT LIBRARY HERE | |
const googleCloudDatastore = require('@google-cloud/datastore')({ |