/** * PdfCollection.ts class for EJ2-PDF * The class used to handle the collection of PdF objects. */ export declare class PdfCollection { /** * Stores the `objects` as array. * @private */ private collection; /** * Initializes a new instance of the `Collection` class. * @private */ constructor(); /** * Gets the `Count` of stored objects. * @private */ readonly count: number; /** * Gets the `list` of stored objects. * @private */ readonly list: Object[]; }