Remove unused dependencies

Closes #65.
This commit is contained in:
Tim Lancina
2015-08-24 10:41:44 -05:00
parent af872bc3f2
commit 903ab7fd1f
2 changed files with 19 additions and 6 deletions

View File

@ -0,0 +1,17 @@
{% extends '../type-definition.template.html' %}
{% block staticDeclarations %}
interface List<T> extends Array<T> {}
interface Map<K,V> {}
interface StringMap<K,V> extends Map<K,V> {}
declare module ng {
// See https://github.com/Microsoft/TypeScript/issues/1168
class BaseException /* extends Error */ {
message: string;
stack: string;
toString(): string;
}
interface InjectableReference {}
}
{% endblock %}