mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
import { "Foo::new" as Foo_new } from "./foo.wasm"
|
|
|
|
const foo = Foo_new()
|
|
|
|
export { Foo_new as "Foo::new" }
|
|
export type * as "Foo_types" from './mod'
|
|
|
|
export { "<X>" as "<Y>" } from "somewhere";
|
|
export { "<X>" } from "somewhere";
|