buncid/dist/rebuilds/next-js/grabDist.d.ts
Benjamin Toby 4540404522 Updates
2025-02-21 09:00:49 +01:00

11 lines
289 B
TypeScript

type Param = {
distDir?: string;
};
/**
* # Grab the current distribution directory
* @description This returns the relative path from the CWD. Eg `./.dist/build-1`
* @returns {string | undefined}
*/
export default function grabDist(params?: Param): string | undefined;
export {};