UNPKG

airtune-nostr-tools-development

Version:
11 lines (10 loc) 342 B
import { type AddressPointer, type ProfilePointer, type EventPointer } from './nip19.ts'; import type { Event } from './event.ts'; declare type Reference = { text: string; profile?: ProfilePointer; event?: EventPointer; address?: AddressPointer; }; export declare function parseReferences(evt: Event): Reference[]; export {};