Answers for "module '"@angular/material"' has no exported member 'matsidenavmodule'."

2

Module '"@angular/fire"' has no exported member 'AngularFireModule'.ts(2305)

You need to add "compat" like this in the end

import { AngularFireModule } from "@angular/fire/compat";
import { AngularFireAuthModule } from "@angular/fire/compat/auth";
import { AngularFireStorageModule } from '@angular/fire/compat/storage';
import { AngularFirestoreModule } from '@angular/fire/compat/firestore';
import { AngularFireDatabaseModule } from '@angular/fire/compat/database';
Posted by: Guest on May-09-2022
1

Module '"@angular/common/http"' has no exported member 'RequestOptions'

//RequestOptions is deprecated if you use @angular/common/http
//try this solution instead:
import { HttpHeaders } from '@angular/common/http';
...
const httpOptions = {
        headers: new HttpHeaders({
          'Content-Type':  'application/json',
          'Authorization': environment.key
          })
        };
...
Posted by: Guest on September-09-2021

Code answers related to "module '"@angular/material"' has no exported member 'matsidenavmodule'."

Code answers related to "TypeScript"

Browse Popular Code Answers by Language