2022-12-29 14:44:26 +00:00
|
|
|
import type { Account, Status } from 'masto'
|
2022-12-17 21:35:07 +00:00
|
|
|
|
|
|
|
export interface SearchResult {
|
2022-12-29 14:44:26 +00:00
|
|
|
type: 'account' | 'hashtag' | 'action' | 'status'
|
2022-12-17 21:35:07 +00:00
|
|
|
to: string
|
|
|
|
label?: string
|
|
|
|
account?: Account
|
2022-12-29 14:44:26 +00:00
|
|
|
status?: Status
|
2022-12-17 21:35:07 +00:00
|
|
|
hashtag?: any
|
|
|
|
action?: {
|
|
|
|
label: string
|
|
|
|
}
|
|
|
|
}
|