Spaces:
Build error
Build error
| import { Also, Prop } from 'civkit'; | |
| import { FirestoreRecord } from '../shared/lib/firestore'; | |
| import _ from 'lodash'; | |
| ({ | |
| dictOf: Object | |
| }) | |
| export class ImgAlt extends FirestoreRecord { | |
| static override collectionName = 'imgAlts'; | |
| override _id!: string; | |
| ({ | |
| required: true | |
| }) | |
| src!: string; | |
| ({ | |
| required: true | |
| }) | |
| urlDigest!: string; | |
| () | |
| width?: number; | |
| () | |
| height?: number; | |
| () | |
| generatedAlt?: string; | |
| () | |
| originalAlt?: string; | |
| () | |
| createdAt!: Date; | |
| () | |
| expireAt?: Date; | |
| [k: string]: any; | |
| } | |