UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 294 B
import { PublicLogEntry } from './PublicLogEntry'; /** List of logs */ export interface PublicLog { /** Cache store timestamp */ cacheDate?: string; /** Total amount of lines */ count: number; /** Logs */ data: PublicLogEntry[]; } //# sourceMappingURL=PublicLog.d.ts.map