Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
553 B
TypeScript
12 lines
553 B
TypeScript
import { Provider } from '@nestjs/common';
|
|
import { ThrottlerModuleOptions } from './throttler-module-options.interface';
|
|
import { ThrottlerStorage } from './throttler-storage.interface';
|
|
export declare function createThrottlerProviders(options: ThrottlerModuleOptions): Provider[];
|
|
export declare const ThrottlerStorageProvider: {
|
|
provide: symbol;
|
|
useFactory: (options: ThrottlerModuleOptions) => ThrottlerStorage;
|
|
inject: string[];
|
|
};
|
|
export declare const getOptionsToken: () => string;
|
|
export declare const getStorageToken: () => symbol;
|