export interface ILogsMAUGlobalDTO { count: number; } export interface ILogsMAUNamespaceDTO { namespace: string; count: number; } export interface ILogsMAUDTO { global: ILogsMAUGlobalDTO; breakdown: ILogsMAUNamespaceDTO[]; }