This represents custom typesafe animations

interface CustomAnimation {
    getProgress(): number;
    isFinished(): boolean;
    update(deltaSeconds: number): void;
}

Implemented by

Methods