/** * HTTP 대시보드 Review Queue 패널 폴링 부트 설정 (#274). * `GET /dashboard` 응답에 인라인 스크립트로 `window.__MEMENTO_REVIEW_QUEUE__`를 주입한다. */ export type ReviewQueueDashboardBoot = { pollIntervalMs: number; pollErrorBackoffMs: number[]; }; export declare const DEFAULT_REVIEW_QUEUE_DASHBOARD_BOOT: ReviewQueueDashboardBoot; /** dashboard.html에 두는 플레이스홀더(서버가 치환). */ export declare const REVIEW_QUEUE_DASHBOARD_BOOT_MARKER = ""; /** 환경 변수에서 Review Queue 대시보드 부트 설정을 해석한다. */ export declare function resolveReviewQueueDashboardBootFromEnv(env?: NodeJS.ProcessEnv): ReviewQueueDashboardBoot; /** 인라인 스크립트(한 줄). JSON은 `<`를 이스케이프해 `` 조각 주입을 방지한다. */ export declare function buildReviewQueueBootInjectionHtml(boot: ReviewQueueDashboardBoot): string; export declare function injectReviewQueueBootIntoDashboardHtml(dashboardHtml: string, boot: ReviewQueueDashboardBoot): string; //# sourceMappingURL=review-queue-dashboard-boot.d.ts.map