chore(docs): rename @private to @internal

The latter is understood by TypeScript's --stripInternal option, so this lets us
rely more on the tooling provided by typescript team.
This commit is contained in:
Alex Eagle
2015-10-02 13:32:48 -07:00
parent 4a36fd8203
commit f7aa890ade
38 changed files with 98 additions and 94 deletions

View File

@ -21,7 +21,7 @@ export class JSONPConnection implements Connection {
private _finished: boolean = false;
/**
* @private
* @internal
*/
constructor(req: Request, private _dom: BrowserJsonp,
private baseResponseOptions?: ResponseOptions) {
@ -103,7 +103,7 @@ export class JSONPConnection implements Connection {
@Injectable()
export class JSONPBackend implements ConnectionBackend {
/**
* @private
* @internal
*/
constructor(private _browserJSONP: BrowserJsonp, private _baseResponseOptions: ResponseOptions) {}
createConnection(request: Request): JSONPConnection {

View File

@ -46,11 +46,11 @@ export class ResponseOptions {
*/
headers: Headers;
/**
* @private
* @internal
*/
statusText: string;
/**
* @private
* @internal
*/
type: ResponseTypes;
url: string;