UNPKG

@leanstacks/serverless-common

Version:

LeanStacks organization common serverless components.

11 lines (10 loc) 263 B
/** * Utility functions for the creation and manipulation of identifier values. */ declare const ID: { generate: (length?: number) => string; ID_LENGTH_DEFAULT: number; ID_LENGTH_MAXIMUM: number; ID_LENGTH_MINIMUM: number; }; export default ID;