UNPKG

@ts-for-gir/lib

Version:

Typescript .d.ts generator from GIR for gjs

19 lines (16 loc) 350 B
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[]; }