Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | import type { KernelFacet } from '@metamask/ocap-kernel';
import type { QueueMessageResult } from './background.ts';
import type { CapletManifest } from './controllers/index.ts';
// Type declarations for omnium dev console API.
declare global {
/**
* The E() function from @endo/eventual-send for making eventual sends.
* Set globally in the trusted prelude before lockdown.
*
* @example
* ```typescript
* const kernel = await omnium.getKernel();
* const status = await E(kernel).getStatus();
* ```
*/
// eslint-disable-next-line no-var,id-length
var E: typeof import('@endo/eventual-send').E;
// eslint-disable-next-line no-var
var kernel: KernelFacet | Promise<KernelFacet>;
// eslint-disable-next-line no-var
var omnium: {
/**
* Caplet management API.
*
* Methods that delegate to the controller vat via queueMessage return
* raw CapData. Use `kunser()` to deserialize the results.
*/
caplet: {
install: (manifest: CapletManifest) => QueueMessageResult;
uninstall: (capletId: string) => QueueMessageResult;
list: () => QueueMessageResult;
get: (capletId: string) => QueueMessageResult;
getCapletRoot: (capletId: string) => Promise<string>;
callCapletMethod: (
capletId: string,
method: string,
args: unknown[],
) => QueueMessageResult;
load: (
id: string,
) => Promise<{ manifest: CapletManifest; bundle: unknown }>;
};
};
}
export {};
|