mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
22 lines
645 B
Markdown
22 lines
645 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [iceshrimp-sdk](./iceshrimp-sdk.md) > [entities](./iceshrimp-sdk.entities.md) > [Announcement](./iceshrimp-sdk.entities.announcement.md)
|
||
|
|
||
|
## entities.Announcement type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export type Announcement = {
|
||
|
id: ID;
|
||
|
createdAt: DateString;
|
||
|
updatedAt: DateString | null;
|
||
|
text: string;
|
||
|
title: string;
|
||
|
imageUrl: string | null;
|
||
|
isRead?: boolean;
|
||
|
};
|
||
|
```
|
||
|
**References:** [ID](./iceshrimp-sdk.entities.id.md)<!-- -->, [DateString](./iceshrimp-sdk.entities.datestring.md)
|
||
|
|