@servicenow/sdk - v4.4.1
    Preparing search index...
    interface JSDocPropertyLikeTag {
        getName(): string;
        getNameNode(): EntityName;
        getTypeExpression(): JSDocTypeExpression | undefined;
        getTypeExpressionOrThrow(
            message?: string | (() => string),
        ): JSDocTypeExpression;
        isBracketed(): boolean;
    }
    Index

    Methods

    • Gets the name of the JS doc property like tag.

      Returns string

    • Gets the name node of the JS doc property like tag.

      Returns EntityName

    • Gets the type expression node of the JS doc tag if it exists.

      Returns JSDocTypeExpression | undefined

    • Gets the type expression node of the JS doc tag or throws if it doesn't exist.

      Parameters

      • Optionalmessage: string | (() => string)

      Returns JSDocTypeExpression

    • Checks if the JS doc property like tag is bracketed.

      Returns boolean