summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/api/dialog.ts
blob: a2378767be966bc8924eda0d9f40b106a1109ea9 (plain)
1
2
3
4
5
export default function(opts) {
	return new Promise<string>((res, rej) => {
		alert('dialog not implemented yet');
	});
}