Files
tlsn-plugin-boilerplate/examples/uber/index.d.ts
Hendrik Eeckhaut 0a2be529a3 WIP: Uber plugin
2024-08-22 11:05:06 +02:00

15 lines
322 B
TypeScript

declare module 'main' {
// Extism exports take no params and return an I32
export function start(): I32;
export function two(): I32;
export function three(): I32;
export function config(): I32;
}
declare module 'extism:host' {
interface user {
redirect(ptr: I64): void;
notarize(ptr: I64): I64;
}
}