Documentation
    Preparing search index...

    Interface IJsDocTagInfo

    JSDoc tag information extracted from TypeScript source.

    Represents a single JSDoc tag like @param, @returns, @deprecated, etc. Used throughout typia's metadata system to preserve documentation.

    Jeongho Nam - https://github.com/samchon

    interface IJsDocTagInfo {
        name: string;
        text?: IJsDocTagInfo.IText[];
    }
    Index

    Properties

    Properties

    name: string

    Tag name without @ prefix (e.g., "param", "returns").

    Tag text content, if any.