Remove unused MetaContent type

This commit is contained in:
Alex Gleason 2023-08-12 11:49:33 -05:00
parent e999d693d0
commit e2adc7ad1a
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 12 deletions

View File

@ -52,15 +52,4 @@ const metaContentSchema = z.object({
/** Parses kind 0 content from a JSON string. */
const jsonMetaContentSchema = jsonSchema.pipe(metaContentSchema).catch({});
/** Author metadata from Event<0>. */
type MetaContent = z.infer<typeof metaContentSchema>;
export {
clientMsgSchema,
filterSchema,
jsonMetaContentSchema,
type MetaContent,
metaContentSchema,
nostrIdSchema,
signedEventSchema,
};
export { clientMsgSchema, filterSchema, jsonMetaContentSchema, metaContentSchema, nostrIdSchema, signedEventSchema };