iceshrimp/packages/backend/src/server/api/mastodon/entities/filter_result.ts
Laura Hausmann 03cdf4ec4a
[mastodon-client] Add basic support for filters
Currently you have to configure these in the web ui, but this will eventually be implemented as well
2023-11-27 21:41:09 +01:00

8 lines
164 B
TypeScript

namespace MastodonEntity {
export type FilterResult = {
filter: Filter;
keyword_matches?: string[];
status_matches?: string[];
};
}