13 lines
214 B
TypeScript
13 lines
214 B
TypeScript
|
import type { Account } from 'masto'
|
||
|
|
||
|
export interface SearchResult {
|
||
|
type: 'account' | 'hashtag' | 'action'
|
||
|
to: string
|
||
|
label?: string
|
||
|
account?: Account
|
||
|
hashtag?: any
|
||
|
action?: {
|
||
|
label: string
|
||
|
}
|
||
|
}
|