Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ssb-typescript

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssb-typescript - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

2

package.json
{
"name": "ssb-typescript",
"version": "1.3.0",
"version": "1.4.0",
"description": "TypeScript type definitions for Secure Scuttlebutt",

@@ -5,0 +5,0 @@ "repository": {

@@ -51,3 +51,6 @@ /**

};
export declare type Content = PostContent | ContactContent | VoteContent | AboutContent | null;
export declare type Privatable<T> = T & {
recps?: Array<FeedId>;
};
export declare type Content = Privatable<PostContent> | Privatable<ContactContent> | Privatable<VoteContent> | Privatable<AboutContent> | null;
export declare type PostContent = {

@@ -54,0 +57,0 @@ type: 'post';

@@ -58,7 +58,9 @@ /**

export type Privatable<T> = T & {recps?: Array<FeedId>};
export type Content =
| PostContent
| ContactContent
| VoteContent
| AboutContent
| Privatable<PostContent>
| Privatable<ContactContent>
| Privatable<VoteContent>
| Privatable<AboutContent>
| null;

@@ -65,0 +67,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc