@rudderstack/integrations-lib
Version:
13 lines • 349 B
TypeScript
export type JSONValue = string | number | boolean | {
[x: string]: JSONValue;
} | Array<JSONValue>;
export type LoggableExtraData = {
destinationId: string;
workspaceId: string;
module: string;
implementation: string;
sourceId: string;
destinationType: string;
feature?: string;
};
//# sourceMappingURL=types.d.ts.map