@rolldown/debug 1.0.0-beta.8-commit.2686eb1 → 1.0.0-beta.8-commit.165d0b1
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/index.d.ts
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { type Meta } from './generated/index.js';
|
|
2
2
|
export * from './generated/index.js';
|
|
3
|
-
export
|
|
3
|
+
export type Event = {
|
|
4
4
|
timestamp: string;
|
|
5
5
|
session_id: string;
|
|
6
|
-
|
|
7
|
-
}
|
|
6
|
+
} & Meta;
|
|
8
7
|
export declare function parseToEvents(data: string): Event[];
|
|
9
8
|
export declare function parseToEvent(data: string): Event;
|