If an interface is not exported publicly from its package, then the doc-gen does not see it, and so cannot include it in the generated documentation. This was the case for a number of `...Decorator` interfaces, such as `PipeDecorator` and `InputDecorator. This commit adds these interfaces to the public export to fix this problem. PR Close #28836 PR Close #28961
This commit is contained in:
25
tools/public_api_guard/core/core.d.ts
vendored
25
tools/public_api_guard/core/core.d.ts
vendored
@ -354,6 +354,11 @@ export interface HostBinding {
|
||||
|
||||
export declare const HostBinding: HostBindingDecorator;
|
||||
|
||||
export interface HostBindingDecorator {
|
||||
(hostPropertyName?: string): any;
|
||||
new (hostPropertyName?: string): any;
|
||||
}
|
||||
|
||||
export interface HostDecorator {
|
||||
(): any;
|
||||
new (): Host;
|
||||
@ -366,6 +371,11 @@ export interface HostListener {
|
||||
|
||||
export declare const HostListener: HostListenerDecorator;
|
||||
|
||||
export interface HostListenerDecorator {
|
||||
(eventName: string, args?: string[]): any;
|
||||
new (eventName: string, args?: string[]): any;
|
||||
}
|
||||
|
||||
export declare function inject<T>(token: Type<T> | InjectionToken<T>): T;
|
||||
export declare function inject<T>(token: Type<T> | InjectionToken<T>, flags?: InjectFlags): T | null;
|
||||
|
||||
@ -447,6 +457,11 @@ export interface Input {
|
||||
|
||||
export declare const Input: InputDecorator;
|
||||
|
||||
export interface InputDecorator {
|
||||
(bindingPropertyName?: string): any;
|
||||
new (bindingPropertyName?: string): any;
|
||||
}
|
||||
|
||||
export declare function isDevMode(): boolean;
|
||||
|
||||
export interface IterableChangeRecord<V> {
|
||||
@ -627,6 +642,11 @@ export interface Output {
|
||||
|
||||
export declare const Output: OutputDecorator;
|
||||
|
||||
export interface OutputDecorator {
|
||||
(bindingPropertyName?: string): any;
|
||||
new (bindingPropertyName?: string): any;
|
||||
}
|
||||
|
||||
export declare const PACKAGE_ROOT_URL: InjectionToken<string>;
|
||||
|
||||
export interface Pipe {
|
||||
@ -636,6 +656,11 @@ export interface Pipe {
|
||||
|
||||
export declare const Pipe: PipeDecorator;
|
||||
|
||||
export interface PipeDecorator {
|
||||
(obj: Pipe): TypeDecorator;
|
||||
new (obj: Pipe): Pipe;
|
||||
}
|
||||
|
||||
export interface PipeTransform {
|
||||
transform(value: any, ...args: any[]): any;
|
||||
}
|
||||
|
Reference in New Issue
Block a user