remove two deprecated things.

This commit is contained in:
fiatjaf
2025-05-31 20:04:46 -03:00
parent 5b78a829c7
commit ae2f97655b
2 changed files with 0 additions and 10 deletions

View File

@@ -20,9 +20,6 @@ export function isAddressableKind(kind: number): boolean {
return 30000 <= kind && kind < 40000
}
/** @deprecated use isAddressableKind instead */
export const isParameterizedReplaceableKind = isAddressableKind
/** Classification of the event kind. */
export type KindClassification = 'regular' | 'replaceable' | 'ephemeral' | 'parameterized' | 'unknown'