just format

This commit is contained in:
Alex Gleason
2023-08-31 13:42:15 -05:00
parent 2a70bb18ff
commit 718032022c
55 changed files with 930 additions and 1488 deletions

View File

@@ -1,4 +1,4 @@
import type {Event} from './event.ts'
import type { Event } from './event.ts'
type EventParams<K extends number> = Partial<Event<K>>
@@ -12,6 +12,6 @@ export function buildEvent<K extends number = 1>(params: EventParams<K>): Event<
content: '',
tags: [],
sig: '',
...params
...params,
}
}