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

Properties

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