New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@tsclass/tsclass

Package Overview
Dependencies
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsclass/tsclass - npm Package Compare versions

Comparing version 4.0.4 to 4.0.5

2

dist_ts/00_commitinfo_data.js

@@ -6,5 +6,5 @@ /**

name: '@tsclass/tsclass',
version: '4.0.4',
version: '4.0.5',
description: 'common classes for TypeScript'
};
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxrQkFBa0I7SUFDeEIsT0FBTyxFQUFFLE9BQU87SUFDaEIsV0FBVyxFQUFFLCtCQUErQjtDQUM3QyxDQUFBIn0=
import { content } from '../index.js';
/**
* a general content article
* can be news, can be a productdescription,
* can be anything that has text with a title
*/
export interface IArticle<T = any> {

@@ -3,0 +8,0 @@ /**

import { general, content } from '../index.js';
/**
* answers the question "Who wrote that?"
*/
export interface IAuthor {

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

@@ -1,2 +0,5 @@

import { IArticle } from "./article.js";
import { IArticle } from './article.js';
/**
* a set of articles that together form a body of documentation
*/
export interface IDocumentationSet {

@@ -3,0 +6,0 @@ id: string;

@@ -1,2 +0,2 @@

import "./article.js";
import './article.js';
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG9jdW1lbnRhdGlvbnNldC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RzL2NvbnRlbnQvZG9jdW1lbnRhdGlvbnNldC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUF5QixjQUFjLENBQUMifQ==

@@ -0,1 +1,4 @@

/**
* contains the complete info for how to connect to a mongodb database.
*/
export interface IMongoDescriptor {

@@ -2,0 +5,0 @@ /**

{
"name": "@tsclass/tsclass",
"version": "4.0.4",
"version": "4.0.5",
"private": false,

@@ -11,3 +11,4 @@ "description": "common classes for TypeScript",

"test": "tstest test/",
"build": "(tsbuild --web)"
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
},

@@ -14,0 +15,0 @@ "repository": {

@@ -6,4 +6,4 @@ /**

name: '@tsclass/tsclass',
version: '4.0.4',
version: '4.0.5',
description: 'common classes for TypeScript'
}

@@ -5,2 +5,2 @@ export interface ICommitInfo {

description: string;
}
}
import { content } from '../index.js';
/**
* a general content article
* can be news, can be a productdescription,
* can be anything that has text with a title
*/
export interface IArticle<T = any> {

@@ -4,0 +9,0 @@ /**

import { general, content } from '../index.js';
/**
* answers the question "Who wrote that?"
*/
export interface IAuthor {

@@ -4,0 +7,0 @@ /**

@@ -1,2 +0,6 @@

import { IArticle } from "./article.js";
import { IArticle } from './article.js';
/**
* a set of articles that together form a body of documentation
*/
export interface IDocumentationSet {

@@ -6,2 +10,2 @@ id: string;

articles: IArticle[];
}
}

@@ -0,1 +1,4 @@

/**
* contains the complete info for how to connect to a mongodb database.
*/
export interface IMongoDescriptor {

@@ -2,0 +5,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