添加時間事件參數。

interface AddTimeEventParameter {
    end: Date;
    start: Date;
    onEnter?: (() => void);
    onLeave?: (() => void);
    onPlay?: ((time) => void);
}

Properties

end: Date

事件結束時間(包含)。

start: Date

事件開始時間(包含)。

onEnter?: (() => void)

Type declaration

    • (): void
    • 進入時間範圍要執行的函式。

      Returns void

onLeave?: (() => void)

Type declaration

    • (): void
    • 離開時間範圍要執行的函式。

      Returns void

onPlay?: ((time) => void)

Type declaration

    • (time): void
    • 時間範圍內要執行的函式。

      Parameters

      • time: Date

      Returns void

Generated using TypeDoc