mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
12 lines
311 B
TypeScript
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,
|
|
}
|