attempt adding event data rows to output

not trying to join yet, just poking around
This commit is contained in:
emma 2023-05-04 15:10:49 -04:00
parent 586529a5ca
commit 6de82cfd5e
2 changed files with 6 additions and 2 deletions

View file

@ -69,6 +69,7 @@ export interface WebsiteActive {
export interface WebsiteMetric {
x: string;
y: number;
d?: unknown;
}
export interface WebsiteMetricFilter {
@ -90,6 +91,7 @@ export interface WebsiteEventMetric {
x: string;
t: string;
y: number;
d?: unknown;
}
export interface WebsiteEventDataMetric {