mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-14 18:12:09 +08:00
fix(core): typings issue around Trace.categories.All
This commit is contained in:
2
packages/core/trace/index.d.ts
vendored
2
packages/core/trace/index.d.ts
vendored
@ -121,7 +121,7 @@ export namespace Trace {
|
||||
export const ModuleNameResolver = 'ModuleNameResolver';
|
||||
|
||||
export const separator = ',';
|
||||
export const All: Array<string>;
|
||||
export const All: string;
|
||||
|
||||
export function concat(...args: any): string;
|
||||
}
|
||||
|
@ -203,7 +203,7 @@ export namespace Trace {
|
||||
export const ModuleNameResolver = 'ModuleNameResolver';
|
||||
|
||||
export const separator = ',';
|
||||
export const All = [VisualTreeEvents, Layout, Style, ViewHierarchy, NativeLifecycle, Debug, Navigation, Test, Binding, Error, Animation, Transition, Livesync, ModuleNameResolver].join(separator);
|
||||
export const All: string = [VisualTreeEvents, Layout, Style, ViewHierarchy, NativeLifecycle, Debug, Navigation, Test, Binding, Error, Animation, Transition, Livesync, ModuleNameResolver].join(separator);
|
||||
|
||||
export function concat(...args: any): string {
|
||||
let result: string;
|
||||
|
Reference in New Issue
Block a user