feat: init

This commit is contained in:
2026-02-13 22:02:30 +01:00
commit 8f9ff830fb
16711 changed files with 3307340 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
//#region ../../node_modules/.pnpm/unctx@2.5.0/node_modules/unctx/dist/transform.d.ts
interface TransformerOptions {
/**
* The function names to be transformed.
*
* @default ['withAsyncContext']
*/
asyncFunctions?: string[];
/**
* @default 'unctx'
*/
helperModule?: string;
/**
* @default 'executeAsync'
*/
helperName?: string;
/**
* Whether to transform properties of an object defined with a helper function. For example,
* to transform key `middleware` within the object defined with function `defineMeta`, you would pass:
* `{ defineMeta: ['middleware'] }`.
* @default {}
*/
objectDefinitions?: Record<string, string[]>;
}
//#endregion
export { TransformerOptions as t };