10 lines
286 B
TypeScript
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;
|