Skip to content

Instantly share code, notes, and snippets.

@kampana
Last active November 27, 2018 08:21
Show Gist options
  • Save kampana/0f89af52d1b9271f563c25df16d2f15e to your computer and use it in GitHub Desktop.
Save kampana/0f89af52d1b9271f563c25df16d2f15e to your computer and use it in GitHub Desktop.
NewService
import { Injectable } from "../my-decorators/my-decorators";
@Injectable('newService')
export class NewService {
returnHelloWorld() : string {
return "New Component Here";
}
returnSearchText() : string {
return "Search:";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment