docs(core): mark EventEmitter#__isAsync as internal to hide from API docs (#31378)

The `__isAsync` property is not part of the public API and should not
appear in the API docs.

PR Close #31378
This commit is contained in:
George Kalpakas
2019-10-03 19:28:56 +03:00
committed by atscott
parent 9364a14d36
commit 0f21ae9a74
2 changed files with 1 additions and 6 deletions

View File

@ -326,7 +326,6 @@ export declare class ErrorHandler {
}
export declare class EventEmitter<T extends any> extends Subject<T> {
__isAsync: boolean;
constructor(isAsync?: boolean);
emit(value?: T): void;
subscribe(generatorOrNext?: any, error?: any, complete?: any): Subscription;