-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
18 lines (16 loc) · 760 Bytes
/
Copy pathindex.ts
File metadata and controls
18 lines (16 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { SectionIds as SectionIdsAlias } from './lib/sections/Section'
export const SectionIds = SectionIdsAlias
export * from './lib/WasmModule'
export * from './lib/disassembler/WasmDisassembler'
export * from './lib/binaryProvider/WasmBinaryProvider'
export * from './lib/binaryProvider/WasmMemoryProvider'
export * from './lib/sections/Section'
export * from './lib/sections/CustomSection'
export * from './lib/sections/DataSection'
export * from './lib/sections/ElementSection'
export * from './lib/sections/ExportSection'
export * from './lib/sections/FunctionSection'
export * from './lib/sections/GlobalSection'
export * from './lib/sections/ImportSection'
export * from './lib/sections/MemorySection'
export * from './lib/disassembler/Disassembly';