MCPcopy
hub / github.com/umami-software/umami / KeyValueData

Interface KeyValueData

src/lib/data.ts:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import type { DynamicDataType } from './types';
4
5export interface KeyValueData {
6 key: string;
7 value: any;
8 dataType: DynamicDataType;
9}
10
11export function flattenJSON(eventData: Record<string, any>): KeyValueData[] {
12 function flatten(obj: Record<string, any>, parentKey: string): KeyValueData[] {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected