UNPKG

@ng-supabase/material

Version:

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

26 lines (22 loc) 628 B
import { makeEnvironmentProviders } from '@angular/core'; import { SupabaseConfig, NotifyService } from '@ng-supabase/core'; // Angular. function provideSupabase(config) { return makeEnvironmentProviders([ { provide: SupabaseConfig, useValue: new SupabaseConfig(config), }, { provide: NotifyService, useValue: {}, // TODO: Implement - @russell.green // useClass: NotifyService, }, ]); } /** * Generated bundle index. Do not edit. */ export { provideSupabase }; //# sourceMappingURL=ng-supabase-material.mjs.map