import firebase from 'firebase/compat/app'; import ICreatedBy from '../Operations/ICreatedBy'; import IOrg from '../Org'; import IService from '../Services/IService'; export default interface IVersion { readonly created_at: ICreatedBy['created_at']; readonly goals: string[]; readonly orgs: firebase.firestore.DocumentReference[] | string[]; readonly services: firebase.firestore.DocumentReference[] | string[]; readonly version: string; }