UNPKG

@tsclass/tsclass

Version:

Provides TypeScript definitions for various business, financial, networking, content, and other common classes.

10 lines (9 loc) 230 B
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[]; }