kysely
    Preparing search index...

    Interface MultiTableReturningInterface<DB, TB, O>

    interface MultiTableReturningInterface<DB, TB extends keyof DB, O> {
        returning<
            SE extends
                | string
                | AliasedExpression<any, any>
                | DynamicReferenceBuilder<any>
                | AliasedExpressionFactory<DB, TB>,
        >(
            selections: readonly SE[],
        ): ReturningInterface<DB, TB, ReturningRow<DB, TB, O, SE>>;
        returning<CB extends SelectCallback<DB, TB>>(
            callback: CB,
        ): ReturningInterface<DB, TB, ReturningCallbackRow<DB, TB, O, CB>>;
        returning<
            SE extends
                | string
                | AliasedExpression<any, any>
                | DynamicReferenceBuilder<any>
                | AliasedExpressionFactory<DB, TB>,
        >(
            selection: SE,
        ): ReturningInterface<DB, TB, ReturningRow<DB, TB, O, SE>>;
        returningAll<T extends string | number | symbol>(
            tables: readonly T[],
        ): MultiTableReturningInterface<DB, TB, ReturningAllRow<DB, T, O>>;
        returningAll<T extends string | number | symbol>(
            table: T,
        ): MultiTableReturningInterface<DB, TB, ReturningAllRow<DB, T, O>>;
        returningAll(): ReturningInterface<DB, TB, Selectable<DB[TB]>>;
    }

    Type Parameters

    • DB
    • TB extends keyof DB
    • O

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods