Events produced by Stage along with their handler signatures

interface EventMap {
    frameEnd: () => void;
    frameStart: () => void;
    idle: () => void;
    update: () => void;
}

Properties

frameEnd: () => void
frameStart: () => void
idle: () => void
update: () => void