@o3r/core
Version:
Core of the Otter Framework
7 lines • 500 B
TypeScript
/**
* Compute the name of the component with the library's name to generate unique component identifier used in metadata and different modules
* @param componentName Name of the component to get the configuration
* @param libraryName Name of the library the component is coming from
*/
export declare function computeItemIdentifier<C extends string, L extends string>(componentName: C, libraryName?: L): `${L extends string ? `${L}#` : ''}${C}`;
//# sourceMappingURL=component.identifier.d.ts.map