interface IListRegistryResponse { metadata: { offset: number; items: number; total: number; }; records: Array<{ id: number; session: number; token: string; hash: string; file: string; status: string; enabled: boolean; created: string; updated: string; }>; } export default IListRegistryResponse;