UNPKG

@eddye68/studio-client

Version:

The AWS service Studio client

21 lines (18 loc) 799 B
import { Attachment } from './attachment.mjs'; import { Edition } from './edition.mjs'; declare class Page { __classname__: string; Width: number | null; Height: number | null; PageNumber: string | null; PageOrder: number | null; Files: Attachment[] | null; Edition: Edition | null; Master: string | null; Instance: string | null; PageSequence: number | null; Renditions: string[] | null; Orientation: string | null; constructor(Width?: number | null, Height?: number | null, PageNumber?: string | null, PageOrder?: number | null, Files?: Attachment[] | null, Edition?: Edition | null, Master?: string | null, Instance?: string | null, PageSequence?: number | null, Renditions?: string[] | null, Orientation?: string | null); } export { Page };