blob: b6ed6480144caacefe36276b08c4120e42b35c3f (
plain) (
blame)
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
52
53
54
55
56
57
58
|
// The types in this file are not publicly defined, but do exist.
// Stuff like `Bun.fs()` and so on.
/**
* Works like the zig `@compileError` built-in, but only supports plain strings.
*/
declare function $bundleError(error: string);
declare module "bun" {
var TOML: {
parse(contents: string): any;
};
function fs(): typeof import("node:fs");
function _Os(): typeof import("node:os");
function jest(): typeof import("bun:test");
var main: string;
var tty: Array<{ hasColors: boolean }>;
var FFI: any;
}
declare var Loader: {
registry: Map<string, LoaderEntry>;
parseModule(key: string, sourceCodeObject: JSCSourceCodeObject): Promise<LoaderModule> | LoaderModule;
linkAndEvaluateModule(resolvedSpecifier: string, unknown: any);
getModuleNamespaceObject(module: LoaderModule): any;
requestedModules(module: LoaderModule): string[];
dependencyKeysIfEvaluated(specifier: string): string[];
resolve(specifier: string, referrer: string): string;
ensureRegistered(key: string): LoaderEntry;
};
interface LoaderEntry {
key: string;
state: number;
fetch: Promise<JSCSourceCodeObject>;
instantiate: Promise<any>;
satisfy: Promise<any>;
dependencies: string[];
module: LoaderModule;
linkError?: any;
linkSucceeded: boolean;
evaluated: boolean;
then?: any;
isAsync: boolean;
}
interface LoaderModule {
dependenciesMap: Map<string, LoaderEntry>;
}
declare interface Error {
code?: string;
}
declare interface ImportMeta {
primordials: {};
}
|