Closed
Description
Currently you cannot import TypeScript types using standard import {MyInterface} from 'mylib'
syntax but must use import type {MyInterface} from 'mylib'
instead. This is a bit inconvenient and non-obvious since Vue and many others allow using the standard syntax, is this something that could be improved or is it a limitation of svelte?