UNPKG

@platform/cell.client

Version:

A strongly typed HTTP client for operating with a CellOS service end-point.

14 lines (13 loc) 436 B
import { t } from '../common'; export declare function saveMonitor(args: { client: t.IClientTypesystem; debounce?: number; }): { event$: import("rxjs").Observable<t.ITypedSheetSaveEvent>; saving$: import("rxjs").Observable<t.ITypedSheetSaving>; saved$: import("rxjs").Observable<t.ITypedSheetSaved>; readonly debounce: number; readonly isDisposed: boolean; dispose(): void; save(): Promise<void>; };