interface Frame {
    baseTileIdx: number;
    frame: number;
    id: string;
    image: MicrioImage;
    opts: {
        area: View;
    };
    ptr: number;
    thumbSrc?: string;
    visible: Writable<boolean>;
}

Properties

baseTileIdx: number
frame: number
id: string
opts: {
    area: View;
}

Type declaration

ptr: number
thumbSrc?: string
visible: Writable<boolean>