mirror of
https://github.com/kennethnym/aris.git
synced 2026-02-02 13:11:17 +00:00
initial commit
This commit is contained in:
10
packages/aris-core/feed.ts
Normal file
10
packages/aris-core/feed.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user