Micrio Client - v6.0.0
    Preparing search index...

    Interface Album

    interface Album {
        currentImage?: Writable<MicrioImage>;
        currentIndex: number;
        goto: (n: number) => void;
        hooked?: boolean;
        info?: AlbumInfo;
        next: () => void;
        numPages: number;
        prev: () => void;
    }
    Index

    Properties

    currentImage?: Writable<MicrioImage>

    Strip-swipe only: writable store tracking the currently active child MicrioImage. Consumers (e.g. ZoomButtons) can subscribe to bind their controls to the image under focus instead of the virtual parent.

    currentIndex: number

    The current page index

    goto: (n: number) => void

    Go to specific page index

    hooked?: boolean

    Album has been initialized and hooked

    info?: AlbumInfo

    The album info

    next: () => void

    Go to next page

    numPages: number

    The number of pages in this album

    prev: () => void

    Go to previous page