rudeshark.net/src/client/app/mobile/api/dialog.ts

6 lines
122 B
TypeScript
Raw Normal View History

2018-02-21 18:00:30 +01:00
export default function(opts) {
return new Promise<string>((res, rej) => {
alert('dialog not implemented yet');
});
}