Function isOutKeyword

  • Test if a node is an OutKeyword.

    Parameters

    • node: Node

    Returns node is OutKeyword

    Whether the given node appears to be an OutKeyword.

    Example

    declare const node: ts.Node;

    if (isOutKeyword(node)) {
    // ...
    }