@ts-for-gir/lib
Version:
Typescript .d.ts generator from GIR for gjs
17 lines (16 loc) • 372 B
TypeScript
import type { TsDocTag } from './ts-doc-tag.js';
/**
* A model that represents a comment.
*
* Inspirited from https://github.com/TypeStrong/typedoc/blob/master/src/lib/models/comments/comment.ts
*/
export interface TsDoc {
/**
* The full body text of the comment..
*/
text: string;
/**
* All associated tags.
*/
tags: TsDocTag[];
}