1 2 3 4 5 6 7 8 9import { customAlphabet } from 'nanoid'; const letters = customAlphabet('ABCDEFGHIJKLMNOPQRSTUVWXYZ', 3); const numbers = customAlphabet('0123456789', 3); export const generateShortId = (): string => { return `${letters()}${numbers()}`; }