ThrottlerModuleOptions
type ThrottlerModuleOptions = Array<ThrottlerOptions> | {
skipIf?: (context: ExecutionContext) => boolean;
ignoreUserAgents?: RegExp[];
getTracker?: ThrottlerGetTrackerFunction;
generateKey?: ThrottlerGenerateKeyFunction;
errorMessage?: string | ((context: ExecutionContext, throttlerLimitDetail: ThrottlerLimitDetail) => string);
storage?: ThrottlerStorage;
throttlers: Array<ThrottlerOptions>;
};