16 lines
288 B
TypeScript
16 lines
288 B
TypeScript
/**
|
|
* Collabora 文档操作功能模块
|
|
*
|
|
* @encoding UTF-8
|
|
*/
|
|
|
|
import { sendUnoCommand } from '../Uno';
|
|
|
|
/**
|
|
* 保存文档
|
|
* @param iframeWindow - iframe 的 contentWindow
|
|
*/
|
|
export function unoSave(iframeWindow: Window): void {
|
|
sendUnoCommand(iframeWindow, '.uno:Save');
|
|
}
|