nostr-components 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/src/index.d.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { default as NostrProfileBadge } from './nostr-profile-badge/nostr-profile-badge.ts';
|
|
2
|
+
import { default as NostrPost } from './nostr-post/nostr-post.ts';
|
|
3
|
+
import { default as NostrProfile } from './nostr-profile/nostr-profile.ts';
|
|
4
|
+
import { default as NostrFollowButton } from './nostr-follow-button/nostr-follow-button.ts';
|
|
5
|
+
import { default as NostrZap } from './nostr-zap/nostr-zap.ts';
|
|
6
|
+
import { default as NostrComment } from './nostr-comment/nostr-comment.ts';
|
|
7
|
+
import { default as NostrDm } from './nostr-dm/nostr-dm.ts';
|
|
8
|
+
import { default as NostrLiveChat } from './nostr-live-chat/nostr-live-chat.ts';
|
|
9
|
+
import { default as NostrLike } from './nostr-like/nostr-like.ts';
|
|
1
10
|
export { default as NostrProfileBadge } from './nostr-profile-badge/nostr-profile-badge.ts';
|
|
2
11
|
export { default as NostrPost } from './nostr-post/nostr-post.ts';
|
|
3
12
|
export { default as NostrProfile } from './nostr-profile/nostr-profile.ts';
|
|
@@ -8,3 +17,16 @@ export { default as NostrDm } from './nostr-dm/nostr-dm.ts';
|
|
|
8
17
|
export { default as NostrLiveChat } from './nostr-live-chat/nostr-live-chat.ts';
|
|
9
18
|
export { default as NostrLike } from './nostr-like/nostr-like.ts';
|
|
10
19
|
export declare function init(): void;
|
|
20
|
+
declare const _default: {
|
|
21
|
+
init: typeof init;
|
|
22
|
+
NostrProfileBadge: typeof NostrProfileBadge;
|
|
23
|
+
NostrPost: typeof NostrPost;
|
|
24
|
+
NostrProfile: typeof NostrProfile;
|
|
25
|
+
NostrFollowButton: typeof NostrFollowButton;
|
|
26
|
+
NostrZap: typeof NostrZap;
|
|
27
|
+
NostrComment: typeof NostrComment;
|
|
28
|
+
NostrDm: typeof NostrDm;
|
|
29
|
+
NostrLiveChat: typeof NostrLiveChat;
|
|
30
|
+
NostrLike: typeof NostrLike;
|
|
31
|
+
};
|
|
32
|
+
export default _default;
|