mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 13:11:17 +00:00
11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
export interface FeedItem<
|
|
TType extends string = string,
|
|
TData extends Record<string, unknown> = Record<string, unknown>,
|
|
> {
|
|
id: string
|
|
type: TType
|
|
priority: number
|
|
timestamp: Date
|
|
data: TData
|
|
}
|