@alpha018/nestjs-firebase-auth
Version:
NestJS Firebase library and Role based guard for authentication with some utils functions
8 lines (7 loc) • 369 B
TypeScript
import { ModuleMetadata } from '@nestjs/common';
import { FirebaseConstructorInterface } from './firebase-constructor.interface';
export interface FirebaseAdminModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
useFactory?: (...args: any[]) => Promise<FirebaseConstructorInterface> | FirebaseConstructorInterface;
inject?: any[];
name?: string;
}