Files
2026-05-06 18:55:16 -05:00

10 lines
286 B
TypeScript

/**
* Calculates the construct uid based on path components.
*
* Components named `Default` (case sensitive) are excluded from uid calculation
* to allow tree refactorings.
*
* @param components path components
*/
export declare function addressOf(components: string[]): string;