Interface IStoryboardElementWithDuration

A storyboard element that ends at a different time than its start time.

interface IStoryboardElementWithDuration {
    duration: number;
    endTime: number;
    filePath: string;
    isDrawable: boolean;
    startTime: number;
}

Hierarchy (view full)

Implemented by

Properties

duration: number

The duration of the storyboard element.

endTime: number

The time at which this storyboard element ends.

filePath: string

The file path of the content of the storyboard element.

isDrawable: boolean

Whether this storyboard element can be drawn or not.

startTime: number

The start time of the storyboard element.