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,21 @@
import { notImplemented, notImplementedClass } from "../_internal/utils.mjs";
export const ChildProcess = /* @__PURE__ */ notImplementedClass("child_process.ChildProcess");
export const _forkChild = /* @__PURE__ */ notImplemented("child_process.ChildProcess");
export const exec = /* @__PURE__ */ notImplemented("child_process.exec");
export const execFile = /* @__PURE__ */ notImplemented("child_process.execFile");
export const execFileSync = /* @__PURE__ */ notImplemented("child_process.execFileSync");
export const execSync = /* @__PURE__ */ notImplemented("child_process.execSyn");
export const fork = /* @__PURE__ */ notImplemented("child_process.fork");
export const spawn = /* @__PURE__ */ notImplemented("child_process.spawn");
export const spawnSync = /* @__PURE__ */ notImplemented("child_process.spawnSync");
export default {
ChildProcess,
_forkChild,
exec,
execFile,
execFileSync,
execSync,
fork,
spawn,
spawnSync
};