geoview-core - v2.1.2
    Preparing search index...

    Type Alias DoUntilJob

    Job returned by the doUntil function

    type DoUntilJob = {
        cancel: () => void;
        interval?: ReturnType<typeof setInterval>;
        start: number;
    }
    Index

    Properties

    cancel: () => void

    Cancels the job

    interval?: ReturnType<typeof setInterval>

    The ID of the interval

    start: number

    The start time of the job