@caidrive/shared
Version:
caidrive.shared.components
19 lines (18 loc) • 348 B
TypeScript
/**
* What it does.
*
* @param name - Parameter description.
* @returns Type and description of the returned object.
*
* @example
* ```
* Write me later.
* ```
*/
import { Identifier } from "./identifier";
export declare class UniqueId extends Identifier<string | number> {
/**
*
*/
constructor(id?: string | number);
}