@servicenow/sdk - v4.4.1
    Preparing search index...

    Options for printing a node.

    interface PrintNodeOptions {
        emitHint?: tsc.EmitHint;
        newLineKind?: tsc.NewLineKind;
        removeComments?: boolean;
        scriptKind?: tsc.ScriptKind;
    }
    Index

    Properties

    emitHint?: tsc.EmitHint

    From the compiler api: "A value indicating the purpose of a node. This is primarily used to distinguish between an Identifier used in an expression position, versus an Identifier used as an IdentifierName as part of a declaration. For most nodes you should just pass Unspecified."

    Defaults to Unspecified.

    newLineKind?: tsc.NewLineKind

    New line kind.

    Defaults to line feed.

    removeComments?: boolean

    Whether to remove comments or not.

    scriptKind?: tsc.ScriptKind

    The script kind.

    This is only useful when passing in a compiler node that was constructed with the compiler API factory methods.

    Defaults to TSX.