@absolutejs/absolute 0.19.0-beta.1042 → 0.19.0-beta.1044
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +842 -311
- package/dist/index.js +32 -10
- package/dist/index.js.map +4 -4
- package/dist/src/cli/heapDiff.d.ts +1 -0
- package/dist/src/cli/inspectData.d.ts +1 -0
- package/dist/src/cli/scripts/analyze.d.ts +1 -0
- package/dist/src/cli/scripts/api.d.ts +1 -0
- package/dist/types/cli.d.ts +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const runHeapDiff: (beforePath?: string, afterPath?: string) => void;
|
|
@@ -8,4 +8,5 @@ export declare const fetchRequests: (url: string) => Promise<RequestRecord[] | n
|
|
|
8
8
|
export declare const findServer: () => Promise<LiveInstance | null>;
|
|
9
9
|
export declare const formatRequestRow: (record: RequestRecord, pathWidth: number) => string;
|
|
10
10
|
export declare const pathColumnWidth: (totalWidth: number) => number;
|
|
11
|
+
export declare const requestDetail: (record: RequestRecord) => string[];
|
|
11
12
|
export declare const requestHeader: (pathWidth: number) => string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const runAnalyze: (args: string[]) => Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const runApi: (args: string[]) => Promise<void>;
|
package/dist/types/cli.d.ts
CHANGED