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