Interface ReadyState

The app's reportReady() state, mirrored by onReady/getReadyState.

interface ReadyState {
    reported: boolean;
    reportedAt?: number;
}

Properties

reported: boolean

Whether the app has called reportReady().

reportedAt?: number

The app-reported timestamp (performance.now()), if it has reported.