Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
2
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/constants.d.mts
generated
vendored
Normal file
2
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/constants.d.mts
generated
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export declare const USE_MAIN_CONTEXT_DEFAULT_LOADER: unknown;
|
||||
export declare const DONT_CONTEXTIFY: unknown;
|
||||
2
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/constants.mjs
generated
vendored
Normal file
2
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/constants.mjs
generated
vendored
Normal 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");
|
||||
7
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/script.d.mts
generated
vendored
Normal file
7
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/script.d.mts
generated
vendored
Normal 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;
|
||||
}
|
||||
15
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/script.mjs
generated
vendored
Normal file
15
Frontend-Learner/node_modules/unenv/dist/runtime/node/internal/vm/script.mjs
generated
vendored
Normal 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");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue