Files
tsclass/ts/content/documentationset.ts
2022-06-10 13:35:00 +02:00

11 lines
220 B
TypeScript

import { IArticle } from './article.js';
/**
* a set of articles that together form a body of documentation
*/
export interface IDocumentationSet {
id: string;
creationTimestamp: number;
articles: IArticle[];
}