linstrom/frontend-reactive/app/models/reaction.ts
mStar 5fb5dae31e Start work on account display
Also no idea wtf is going on with the models
2024-11-21 16:34:20 +01:00

15 lines
399 B
TypeScript

import Model, { attr } from '@ember-data/model';
import type EmoteModel from './emote';
export default class Reaction extends Model {
@attr declare noteId: string;
@attr declare reactorId: string;
@attr declare emoteId: number;
@attr declare emote: EmoteModel;
}
declare module 'ember-data/types/registries/model' {
export default interface ModelRegistry {
reaction: Reaction;
}
}