firefish/packages/megalodon/src/misskey/entities/announcement.ts
ThatOneCalculator a75a19cd17
chore: 🚨 lint megalodon
2023-09-01 16:36:33 -07:00

11 lines
171 B
TypeScript

namespace MisskeyEntity {
export type Announcement = {
id: string;
createdAt: string;
updatedAt: string;
text: string;
title: string;
isRead?: boolean;
};
}