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