Files
tsclass/ts/content/documentationset.ts
2023-09-13 13:31:30 +02:00

11 lines
225 B
TypeScript

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