Produce .d.ts files from our typescript compilation.

Deliver them into our npm module output so users can consume them directly.

Fixes #3082
This commit is contained in:
Alex Eagle
2015-10-01 19:49:45 -07:00
committed by Alex Eagle
parent 393b0526b4
commit 95f984615b
30 changed files with 131 additions and 82 deletions

View File

@ -30,9 +30,6 @@ import {
} from './exceptions';
import {resolveForwardRef} from './forward_ref';
/**
* @internal
*/
export class Dependency {
constructor(public key: Key, public optional: boolean, public lowerBoundVisibility: any,
public upperBoundVisibility: any, public properties: any[]) {}
@ -280,7 +277,6 @@ export class ResolvedBinding_ implements ResolvedBinding {
}
/**
* @internal
* An internal resolved representation of a factory function created by resolving {@link Binding}.
*/
export class ResolvedFactory {

View File

@ -387,7 +387,6 @@ export class BindingWithVisibility {
}
/**
* @internal
* Used to provide dependencies that cannot be easily expressed as bindings.
*/
export interface DependencyProvider {

View File

@ -1,5 +1,4 @@
/**
* @internal
* Type literals is a Dart-only feature. This is here only so we can x-compile
* to multiple languages.
*/