@cloud-copilot/iam-collect
Version:
Collect IAM information from AWS Accounts
16 lines • 508 B
TypeScript
/**
* Generates a random string of a given length
*
* @param length The length of the string you would like to generate
* @returns
*/
export declare function randomCharacters(length?: number): string;
/**
* Generate a short hash of the input string using SHA-256.
* The resulting hash is truncated to 8 characters.
*
* @param input The input string to hash.
* @returns A short hash string.
*/
export declare function shortHash(input: string): Promise<string>;
//# sourceMappingURL=strings.d.ts.map