import { type NamedImportSpecifier } from "https://deno.land/x/live@1.57.32/deps.ts";
e.g. - import { foo } from 'mod.js'
local = foo, imported = None
e.g. import { foo as bar } from 'mod.js'
local = bar, imported = Some(foo) for
x/live/deps.ts>NamedImportSpecifier
import { type NamedImportSpecifier } from "https://deno.land/x/live@1.57.32/deps.ts";
e.g. - import { foo } from 'mod.js'
local = foo, imported = None
e.g. import { foo as bar } from 'mod.js'
local = bar, imported = Some(foo) for