mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 03:19:46 +00:00
6 lines
179 B
TypeScript
6 lines
179 B
TypeScript
import type { NostrSigner, NRelay } from '@nostrify/nostrify';
|
|
|
|
export interface User<S extends NostrSigner = NostrSigner, R extends NRelay = NRelay> {
|
|
signer: S;
|
|
relay: R;
|
|
}
|