@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
17 lines • 613 B
TypeScript
//#region src/utils/ESMxCJSHelpers.d.ts
declare const isESModule: boolean;
/**
* Require relative to the user project
*
* Note: Can resolve package that are installed in the user project, ex `'intlayer'`
*/
declare const getProjectRequire: (startDir?: string) => NodeJS.Require;
/**
* Require relative to the @intlayer/config package
*
* Note: Can resolve package that are installed in the config package, ex `'@intlayer/types'`
*/
declare const configESMxCJSRequire: NodeJS.Require;
//#endregion
export { configESMxCJSRequire, getProjectRequire, isESModule };
//# sourceMappingURL=ESMxCJSHelpers.d.ts.map