UNPKG

@bitwild/rockets-auth

Version:

Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more

16 lines 646 B
import { DynamicModule } from '@nestjs/common'; import { PlainLiteralObject } from '@nestjs/common'; export interface SqliteAdapterEntityConfig<T extends PlainLiteralObject = PlainLiteralObject> { entity: new () => T; } export interface SqliteAdapterFeatureOptions { [entityName: string]: SqliteAdapterEntityConfig; } export interface SqliteAdapterModuleOptions { dbPath?: string; } export declare class SqliteAdapterModule { static forRoot(options?: SqliteAdapterModuleOptions): DynamicModule; static forFeature(entityOptions: SqliteAdapterFeatureOptions): DynamicModule; } //# sourceMappingURL=sqlite-adapter.module.d.ts.map