@salesforce/core
Version:
Core libraries to interact with SFDX projects, orgs, and APIs.
15 lines (14 loc) • 595 B
TypeScript
/**
* A function to generate a unique id and return it in the context of a template, if supplied.
*
* A template is a string that can contain `${%s}` to be replaced with a unique id.
* If the template contains the "%s" placeholder, it will be replaced with the unique id otherwise the id will be appended to the template.
*
* @param options an object with the following properties:
* - template: a template string.
* - length: the length of the unique id as presented in hexadecimal.
*/
export declare function uniqid(options?: {
template?: string;
length?: number;
}): string;