ngx-firebase-cms
Version:
Angular Content Management System using Google Firebase (Authentication, Storage & Firestore)
41 lines (40 loc) • 1.26 kB
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { Observable } from 'rxjs';
import { Post } from '../../interface/post';
import { HelperService } from '../../service/helper.service';
import { AngularFirestore } from '@angular/fire/firestore';
import { AuthService } from '../../service/auth.service';
import { Titlebar } from '../../interface/titlebar';
import { UnsubscriptionService } from '../../service/unsubscription.service';
export declare class UsersComponent implements OnInit, OnDestroy {
private unsubscription;
private auth;
private afs;
private helper;
items: Observable<Post[] | {
$key: string;
}[]>;
header: ({
label: string;
key: string;
pipe?: undefined;
pipeParameter?: undefined;
} | {
label: string;
key: string;
pipe: string;
pipeParameter: {
"keys": string[];
"separator": string;
};
} | {
label: string;
key: string;
pipe: string;
pipeParameter: string;
})[];
titlebar: Titlebar;
constructor(unsubscription: UnsubscriptionService, auth: AuthService, afs: AngularFirestore, helper: HelperService);
ngOnInit(): void;
ngOnDestroy(): void;
}