/** * 日志列表管理器组件 * 负责处理日志列表显示和分页功能 */ declare const style: { '--w-rjv-font-family': string; '--w-rjv-color': string; '--w-rjv-key-string': string; '--w-rjv-background-color': string; '--w-rjv-line-color': string; '--w-rjv-arrow-color': string; '--w-rjv-edit-color': string; '--w-rjv-info-color': string; '--w-rjv-update-color': string; '--w-rjv-copied-color': string; '--w-rjv-copied-success-color': string; '--w-rjv-curlybraces-color': string; '--w-rjv-colon-color': string; '--w-rjv-brackets-color': string; '--w-rjv-quotes-color': string; '--w-rjv-quotes-string-color': string; '--w-rjv-type-string-color': string; '--w-rjv-type-int-color': string; '--w-rjv-type-float-color': string; '--w-rjv-type-bigint-color': string; '--w-rjv-type-boolean-color': string; '--w-rjv-type-date-color': string; '--w-rjv-type-url-color': string; '--w-rjv-type-null-color': string; '--w-rjv-type-nan-color': string; '--w-rjv-type-undefined-color': string; 'font-size': string; 'font-family': string; 'background-color': string; }; type LogListManager = { /** * - 跳转到指定页 */ goToPage: (arg0: number) => void; /** * - 加载日志列表数据 */ loadLogs: () => Promise; /** * - 查看日志详情 */ viewLogDetails: () => Promise; }; declare namespace LogListManager { let goToPage: (arg0: number) => void; let loadLogs: () => Promise; let viewLogDetails: () => Promise; }