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:
@ -111,7 +111,7 @@ export class NgZone {
|
||||
_pendingTimeouts: number[] = [];
|
||||
|
||||
/**
|
||||
* @private
|
||||
* @internal
|
||||
* @param {bool} enableLongStackTrace whether to enable long stack trace. They should only be
|
||||
* enabled in development mode as they significantly impact perf.
|
||||
*/
|
||||
@ -136,7 +136,7 @@ export class NgZone {
|
||||
}
|
||||
|
||||
/**
|
||||
* @private <!-- TODO: refactor to make TS private -->
|
||||
* @internal <!-- TODO: refactor to make TS private -->
|
||||
*
|
||||
* Sets the zone hook that is called just before a browser task that is handled by Angular
|
||||
* executes.
|
||||
@ -150,7 +150,7 @@ export class NgZone {
|
||||
}
|
||||
|
||||
/**
|
||||
* @private <!-- TODO: refactor to make TS private -->
|
||||
* @internal <!-- TODO: refactor to make TS private -->
|
||||
*
|
||||
* Sets the zone hook that is called immediately after Angular zone is done processing the current
|
||||
* task and any microtasks scheduled from that task.
|
||||
@ -166,7 +166,7 @@ export class NgZone {
|
||||
}
|
||||
|
||||
/**
|
||||
* @private <!-- TODO: refactor to make TS private -->
|
||||
* @internal <!-- TODO: refactor to make TS private -->
|
||||
*
|
||||
* Sets the zone hook that is called immediately after the `onTurnDone` callback is called and any
|
||||
* microstasks scheduled from within that callback are drained.
|
||||
@ -192,7 +192,7 @@ export class NgZone {
|
||||
}
|
||||
|
||||
/**
|
||||
* @private <!-- TODO: refactor to make TS private -->
|
||||
* @internal <!-- TODO: refactor to make TS private -->
|
||||
*
|
||||
* Sets the zone hook that is called when an error is thrown in the Angular zone.
|
||||
*
|
||||
|
Reference in New Issue
Block a user