stringLength sets the exact length of every generated string (default 10). The value must not exceed what the enabled charset can provide when it needs to repeat — in practice any length works because the pool is cycled until it reaches stringLength:
const token = Forger.create<string>({ stringLength: 32, stringSpecial: false })!;
// 32 characters from letters and digits
Scope
As with all settings, the options apply to every string in the call — nested objects, arrays, tuple positions, and function return values alike.