import * as sfw from 'sfw'; const { Input } = sfw.element.native; export async function upload_images() { const input = Input.new({ type: 'file', multiple: true, accept: 'image/jpeg', }) input.click(); }