@tsclass/tsclass
Advanced tools
Comparing version 4.0.4 to 4.0.5
@@ -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 @@ /** |
44806
1179