Add firebaseID to interface

This commit is contained in:
Garrett Mills 2021-04-10 02:30:44 -05:00
parent f797cd0e25
commit 16ebe6158a
Signed by: garrettmills
GPG Key ID: D2BF5FBA8298F246

View File

@ -5,7 +5,8 @@ import * as firebase from "firebase-admin"
import {Application} from "@extollo/lib";
export interface FirebaseResourceItem {
seqID: number
firebaseID: string;
seqID: number;
}
@Injectable()