@storm-software/workspace-tools
Version:
Tools for managing a Storm workspace, including various Nx generators and executors for common development tasks.
12 lines (10 loc) • 373 B
TypeScript
/**
* Get the version of a crate from the registry.
*
* @param name - The name of the crate
* @param tag - The tag of the crate
* @param registry - The registry URL
* @returns The version of the crate from the registry
*/
declare const getCrateRegistryVersion: (name: string, tag?: string, registry?: string) => Promise<string>;
export { getCrateRegistryVersion };