banira
    Preparing search index...

    Interface ClassMethod

    interface ClassMethod {
        deprecated?: string | boolean;
        description?: string;
        inheritedFrom?: { name: string };
        kind: "method";
        name: string;
        parameters?: Parameter[];
        privacy: "private" | "protected" | "public";
        return?: { description?: string; type?: { text: string } };
        static?: boolean;
    }
    Index

    Properties

    deprecated?: string | boolean

    Present when the method is marked @deprecated; the string is the deprecation note, if any.

    description?: string
    inheritedFrom?: { name: string }
    kind: "method"
    name: string
    parameters?: Parameter[]
    privacy: "private" | "protected" | "public"
    return?: { description?: string; type?: { text: string } }
    static?: boolean