11 lines
225 B
TypeScript
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[];
|
|
}
|