fix: 🐛

This commit is contained in:
codytseng 2025-08-12 11:05:24 +08:00
parent c6a5157fe7
commit 4a946e4ab0
9 changed files with 310 additions and 211 deletions

View file

@ -1,12 +1,9 @@
import { Event, VerifiedEvent, Filter } from 'nostr-tools'
import { POLL_TYPE } from './constants'
export type TSubRequest = {
urls: string[]
filter: Omit<Filter, 'since' | 'until'> & { limit: number }
}
export type TSubRequestFilter = Omit<Filter, 'since' | 'until'> & { limit: number }
export type TNormalFeedSubRequest = {
export type TFeedSubRequest = {
urls: string[]
filter: Omit<Filter, 'since' | 'until' | 'kinds'>
}