Skip to content

Commit ee340d4

Browse files
refactor(template): Remove template services from core.
1 parent 44d2894 commit ee340d4

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/common/coreservices.ts

-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export let notImplemented = (fnname: string) => () => {
1515
let services: CoreServices = {
1616
$q: undefined,
1717
$injector: undefined,
18-
template: <any> {}
1918
};
2019

2120
export interface $QLikeDeferred {
@@ -44,7 +43,6 @@ export interface $InjectorLike {
4443
export interface CoreServices {
4544
$q: $QLike;
4645
$injector: $InjectorLike;
47-
template: TemplateServices;
4846
}
4947

5048
export interface LocationServices extends Disposable {
@@ -169,9 +167,4 @@ export interface LocationConfig extends Disposable {
169167
hashPrefix(newprefix: string): string;
170168
}
171169

172-
/** @hidden */
173-
export interface TemplateServices {
174-
get(url: string): Promise<string>;
175-
}
176-
177170
export {services};

0 commit comments

Comments
 (0)