chore(build): Fix .d.ts generation errors caused by invisible types of exported declarations

Fixes #3098
This commit is contained in:
Mohamed Hegazy
2015-07-09 17:32:42 -07:00
committed by Alex Eagle
parent f42382db3b
commit 573c047d50
9 changed files with 15 additions and 15 deletions

View File

@ -1,8 +1,8 @@
import {bind, OpaqueToken} from 'angular2/di';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {DateWrapper} from 'angular2/src/facade/lang';
export class Options {
static get DEFAULT_BINDINGS() { return _DEFAULT_BINDINGS; }
static get DEFAULT_BINDINGS(): Binding[] { return _DEFAULT_BINDINGS; }
// TODO(tbosch): use static initializer when our transpiler supports it
static get SAMPLE_ID() { return _SAMPLE_ID; }
// TODO(tbosch): use static initializer when our transpiler supports it