@keerthanask/page-flip
Version:
Powerful, simple and flexible JS Library for creating realistic and beautiful page turning effect
12 lines (11 loc) • 400 B
TypeScript
import { Render } from '../Render/Render';
import { PageCollection } from './PageCollection';
import { PageFlip } from '../PageFlip';
/**
* Сlass representing a collection of pages as images on the canvas
*/
export declare class ImagePageCollection extends PageCollection {
private readonly imagesHref;
constructor(app: PageFlip, render: Render, imagesHref: string[]);
load(): void;
}