Files
tlsn-plugin-boilerplate/examples/twitter_profile_js/index.d.ts
2024-06-25 15:08:43 +02:00

16 lines
365 B
TypeScript

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