16 lines
262 B
TypeScript
Raw Normal View History

2019-09-18 15:02:21 +09:00
export interface NativeService {
showNotify(
roomSeq: number,
title: string,
contents: string,
image: string,
useSound: boolean
): void;
checkForUpdates(): Promise<boolean>;
showImageViewer(): void;
saveFile(blob: Blob): void;
}