import type { LogpushResponse } from './LogpushResponse'; /** * @type LogpushJobsEnvelope: * * @property data: * */ export type LogpushJobsEnvelope = { data: Array; } & { [key: string]: any; };