interface Interface {
    Async?: boolean;
    Comment?: boolean;
    Const?: boolean;
    Debug?: boolean;
    Function?: boolean;
    Max?: number;
}

Properties

Async?: boolean

Allow inlining async expressions

Comment?: boolean

Preserve comments near declarations

Const?: boolean

Allow inlining variables declared with 'const'

Debug?: boolean

Debug mode with detailed logging

Function?: boolean

Allow inlining function declarations

Max?: number

Maximum AST node count to inline