Event
import type { Event } from "https://gitlab.com/soapbox-pub/strfry-policies/-/raw/develop/mod.ts";
interface Event <K extends number = number> {
content: string;
created_at: number;
id: string;
kind: K;
pubkey: string;
sig: string;
tags: string[][];
}