UNPKG

nostr-tools

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