Member Junction
    Preparing search index...
    interface TranspileResult {
        errors: string[];
        sql: string;
        statements: string[];
        success: boolean;
        warnings: string[];
    }
    Index

    Properties

    errors: string[]

    Error messages

    sql: string

    Combined SQL output (all statements joined with ;\n)

    statements: string[]

    Individual transpiled statements

    success: boolean

    Whether transpilation succeeded without errors

    warnings: string[]

    Warning messages