| 4 | import type { PointerInput } from "./types.js"; |
| 5 | |
| 6 | export interface CallableNativeFunction { |
| 7 | (...args: FunctionCallInput[]): NativePointer | null; |
| 8 | address: NativePointer; |
| 9 | } |
| 10 | |
| 11 | export type FunctionCallInput = PointerInput | CallableNativeFunction; |
| 12 |
nothing calls this directly
no outgoing calls
no test coverage detected