/** * module: ... * */ /** * value: ... * */ export declare const myValue = "3.124"; /** * interface: ... * */ export interface IMyClass { /** * member: ... * */ myValue: string; /** * method: ... * */ myMethod(): boolean; } /** * class: ... * */ export declare class MyClass { /** * member: ... * */ myValue: string; /** * constructor: ... * */ constructor(options: { myValue: string; }); /** * method: ... * */ myMethod(): boolean; } /** * function: ... * */ export declare function myFunction(): number;