Website Structure

This commit is contained in:
supalerk-ar66 2026-01-13 10:46:40 +07:00
parent 62812f2090
commit 71f0676a62
22365 changed files with 4265753 additions and 791 deletions

View file

@ -0,0 +1,2 @@
export declare const USE_MAIN_CONTEXT_DEFAULT_LOADER: unknown;
export declare const DONT_CONTEXTIFY: unknown;

View file

@ -0,0 +1,2 @@
export const USE_MAIN_CONTEXT_DEFAULT_LOADER = /* @__PURE__ */ Symbol("vm_dynamic_import_main_context_default");
export const DONT_CONTEXTIFY = /* @__PURE__ */ Symbol("vm_context_no_contextify");

View file

@ -0,0 +1,7 @@
import type nodeVm from "node:vm";
export declare class Script implements nodeVm.Script {
runInContext(contextifiedObject: nodeVm.Context, options?: nodeVm.RunningScriptOptions | undefined);
runInNewContext(contextObject?: nodeVm.Context | undefined, options?: nodeVm.RunningScriptInNewContextOptions | undefined);
runInThisContext(options?: nodeVm.RunningScriptOptions | undefined);
createCachedData(): Buffer;
}

View file

@ -0,0 +1,15 @@
import { createNotImplementedError } from "../../../_internal/utils.mjs";
export class Script {
runInContext(contextifiedObject, options) {
throw createNotImplementedError("Script.runInContext");
}
runInNewContext(contextObject, options) {
throw createNotImplementedError("Script.runInNewContext");
}
runInThisContext(options) {
throw createNotImplementedError("Script.runInThisContext");
}
createCachedData() {
throw createNotImplementedError("Script.createCachedData");
}
}