19 lines
407 B
TypeScript
19 lines
407 B
TypeScript
import { Info } from 'nostr-login-components/dist/types/types';
|
|
import { NostrLoginOptions } from '../types';
|
|
|
|
class NostrParams {
|
|
public userInfo: Info | null;
|
|
public optionsModal: NostrLoginOptions;
|
|
constructor() {
|
|
this.userInfo = null;
|
|
|
|
this.optionsModal = {
|
|
theme: 'default',
|
|
startScreen: 'welcome',
|
|
devOverrideBunkerOrigin: '',
|
|
};
|
|
}
|
|
}
|
|
|
|
export default NostrParams;
|