/** * Vite helpers to generate multiple exports for a node package * With TS imports we want to be able to create an entry point for each index.ts file in * project and update the exports field of the package.json as needed * */ /** Search for ALL index.ts files in the repo and export them as nested exports */ export declare function findEntryPoints({ allowCss }?: { allowCss?: boolean; }): Promise; /** * For a series of imports we add package.json exports to enable nested typescript definitions * and path nested imports * * ex. import { foo } from '@scalar/some-package/foo-domain' */ export declare function addPackageFileExports({ allowCss, entries }: { allowCss?: boolean; entries: string | string[]; }): Promise; //# sourceMappingURL=helpers.d.ts.map