interface Keyframe {
    composite?: CompositeOperationOrAuto;
    easing?: string;
    offset?: null | number;
    [property: string]:
        | string
        | number
        | null
        | undefined;
}

Indexable

  • [property: string]:
        | string
        | number
        | null
        | undefined

Properties

easing?: string
offset?: null | number