Skip to content

Commit

Permalink
refactor(template): Remove template services from core.
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Jan 3, 2017
1 parent 44d2894 commit ee340d4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/common/coreservices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export let notImplemented = (fnname: string) => () => {
let services: CoreServices = {
$q: undefined,
$injector: undefined,
template: <any> {}
};

export interface $QLikeDeferred {
Expand Down Expand Up @@ -44,7 +43,6 @@ export interface $InjectorLike {
export interface CoreServices {
$q: $QLike;
$injector: $InjectorLike;
template: TemplateServices;
}

export interface LocationServices extends Disposable {
Expand Down Expand Up @@ -169,9 +167,4 @@ export interface LocationConfig extends Disposable {
hashPrefix(newprefix: string): string;
}

/** @hidden */
export interface TemplateServices {
get(url: string): Promise<string>;
}

export {services};

0 comments on commit ee340d4

Please sign in to comment.