/** * 对外统一接口 */ export interface OfficeViewer { render(root: HTMLElement, options: any): Promise; updateOptions(options: any): void; download(fileName: string): Promise; print(): void; updateVariable(): void; destroy(): void; }