Swap-Aggregator-Subgraph/node_modules/assemblyscript/std/assembly/shared/target.ts
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

12 lines
311 B
TypeScript

// This file is shared with the compiler and must remain portable
/** Compilation target. */
export enum Target {
/** Portable. */
JS = 0,
/** WebAssembly with 32-bit pointers. */
WASM32 = 1,
/** WebAssembly with 64-bit pointers. Experimental and not supported by any runtime yet. */
WASM64 = 2,
}