mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-13 13:37:31 -07:00
30 lines
883 B
Markdown
30 lines
883 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) > [Antenna](./iceshrimp-sdk.entities.antenna.md)
|
||
|
|
||
|
## entities.Antenna type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export type Antenna = {
|
||
|
id: ID;
|
||
|
createdAt: DateString;
|
||
|
name: string;
|
||
|
keywords: string[][];
|
||
|
excludeKeywords: string[][];
|
||
|
src: "home" | "all" | "users" | "list" | "group" | "instances";
|
||
|
userListId: ID | null;
|
||
|
userGroupId: ID | null;
|
||
|
users: string[];
|
||
|
instances: string[];
|
||
|
caseSensitive: boolean;
|
||
|
notify: boolean;
|
||
|
withReplies: boolean;
|
||
|
withFile: boolean;
|
||
|
hasUnreadNote: boolean;
|
||
|
};
|
||
|
```
|
||
|
**References:** [ID](./iceshrimp-sdk.entities.id.md)<!-- -->, [DateString](./iceshrimp-sdk.entities.datestring.md)
|
||
|
|