Interface ExpressionLike

interface ExpressionLike {
    compile: (ctx: Context) => RawBuilder<unknown>;
}

Properties

Properties

compile: (ctx: Context) => RawBuilder<unknown>