5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
export default function(opts) {
|
|
return new Promise<string>((res, rej) => {
|
|
alert('dialog not implemented yet');
|
|
});
|
|
}
|