You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to feed the table with array of objects it throws typing error. So I need to use as any.
When trying to inspect the source code I see next very messy signatures
What would you expect to happen?
Objects array just works.
When going to sources, I'd like to see a normal ts-doc style documentation of each field. like Angular does, I.e.
export declare interface Injectable {
/**
* Determines which injectors will provide the injectable.
*
* - `Type<any>` - associates the injectable with an `@NgModule` or other `InjectorType`. This
* option is DEPRECATED.
* - 'null' : Equivalent to `undefined`. The injectable is not provided in any scope automatically
* and must be added to a `providers` array of an [@NgModule](api/core/NgModule#providers),
* [@Component](api/core/Directive#providers) or [@Directive](api/core/Directive#providers).
*
* The following options specify that this injectable should be provided in one of the following
* injectors:
* - 'root' : The application-level injector in most apps.
* - 'platform' : A special singleton platform injector shared by all
* applications on the page.
* - 'any' : Provides a unique instance in each lazy loaded module while all eagerly loaded
* modules share one instance. This option is DEPRECATED.
*
*/
providedIn?: Type<any> | 'root' | 'platform' | 'any' | null;
}
What steps did you take?
Tried to create a custom plugin and fill in the output table with my output array of objects ¯_(ツ)_/¯.
What happened?
any
.What would you expect to happen?
What steps did you take?
Shape of objects
Code PushUp package version
0.50.0
What operation system are you on?
Windows
Node version
18.17.0
Relevant log output
No response
The text was updated successfully, but these errors were encountered: