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,15 @@
import { AsyncLocalStorage } from "./internal/async_hooks/async-local-storage.mjs";
import { AsyncResource } from "./internal/async_hooks/async-resource.mjs";
import { asyncWrapProviders, createHook, executionAsyncId, executionAsyncResource, triggerAsyncId } from "./internal/async_hooks/async-hook.mjs";
export { AsyncLocalStorage } from "./internal/async_hooks/async-local-storage.mjs";
export { AsyncResource } from "./internal/async_hooks/async-resource.mjs";
export * from "./internal/async_hooks/async-hook.mjs";
export default {
asyncWrapProviders,
AsyncLocalStorage,
AsyncResource,
createHook,
executionAsyncId,
executionAsyncResource,
triggerAsyncId
};