@ts-for-gir/lib
Version:
Typescript .d.ts generator from GIR for gjs
19 lines (16 loc) • 350 B
text/typescript
import type { TsDocTag } from "./ts-doc-tag.ts";
/**
* 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[];
}