github.com/primecitizens/pcz/std@v0.2.1/ffi/js/bindings/@ffi.ts (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 // NOTE: this file is only meant to expose APIs for module registration. 5 6 import { ModuleFactory, ModuleImporter } from "./bindgen"; 7 8 export * from "./bindgen"; 9 10 export namespace heap { 11 export type Ref<T> = number; 12 } 13 14 export const importModule: ModuleImporter = (module: string, factory: ModuleFactory) => {};