mirror of
https://github.com/nbd-wtf/nostr-tools.git
synced 2025-12-08 16:28:49 +00:00
18 lines
364 B
TypeScript
18 lines
364 B
TypeScript
import type {Event} from './event.ts'
|
|
|
|
type EventParams<K extends number> = Partial<Event<K>>
|
|
|
|
/** Build an event for testing purposes. */
|
|
export function buildEvent<K extends number = 1>(params: EventParams<K>): Event<K> {
|
|
return {
|
|
id: '',
|
|
kind: 1 as K,
|
|
pubkey: '',
|
|
created_at: 0,
|
|
content: '',
|
|
tags: [],
|
|
sig: '',
|
|
...params
|
|
}
|
|
}
|