UNPKG

@ng-supabase/core

Version:

ng-supabase is a component library and helper utilities for integrating Supabase in your angular application.

19 lines (18 loc) 732 B
import { LogLevel } from './log-level'; import { SupabaseConfig } from '../supabase-config'; import * as i0 from "@angular/core"; export declare class LogService { private readonly logs; private readonly config; private readonly consoleMap; constructor(config: SupabaseConfig); log(level: LogLevel, message: string, error?: Error): void; trace(message: string): void; debug(message: string): void; info(message: string): void; warn(message: string, error?: Error): void; error(message: string, error?: Error): void; fatal(message: string, error?: Error): void; static ɵfac: i0.ɵɵFactoryDeclaration<LogService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<LogService>; }