@ts-for-gir/lib
Version:
Typescript .d.ts generator from GIR for gjs
14 lines (13 loc) • 467 B
TypeScript
/**
* Transforms GIR documentation text to markdown format
* @param text The documentation text to transform
* @returns The transformed markdown text
*/
export declare function transformGirDocText(text: string): string;
/**
* Transforms TSDoc tag text by removing newlines
* Used for @param and @returns descriptions
* @param text The tag text to transform
* @returns The cleaned text
*/
export declare function transformGirDocTagText(text: string): string;