16 lines
262 B
TypeScript
16 lines
262 B
TypeScript
|
export interface NativeService {
|
||
|
showNotify(
|
||
|
roomSeq: number,
|
||
|
title: string,
|
||
|
contents: string,
|
||
|
image: string,
|
||
|
useSound: boolean
|
||
|
): void;
|
||
|
|
||
|
checkForUpdates(): Promise<boolean>;
|
||
|
|
||
|
showImageViewer(): void;
|
||
|
|
||
|
saveFile(blob: Blob): void;
|
||
|
}
|