import { Observable } from 'rxjs'; export interface NativeService { showNotify( roomSeq: number, title: string, contents: string, image: string, useSound: boolean ): void; checkForUpdates(): Observable; showImageViewer(): void; saveFile(path: string, buf: ArrayBuffer): Observable; readFile(path: string): Observable; }