17 lines
305 B
TypeScript
17 lines
305 B
TypeScript
import { NDKEvent } from '@nostr-dev-kit/ndk'
|
|
|
|
export interface CommentsLoaderResult {
|
|
event: NDKEvent
|
|
parents: NDKEvent[]
|
|
}
|
|
|
|
export enum SortByEnum {
|
|
Latest = 'Latest',
|
|
Oldest = 'Oldest'
|
|
}
|
|
|
|
export enum AuthorFilterEnum {
|
|
All_Comments = 'All Comments',
|
|
Creator_Comments = 'Creator Comments'
|
|
}
|