UNPKG

refql

Version:

A Node.js and Deno library for composing and running SQL queries.

13 lines (12 loc) 474 B
import { TagFunctionVariable } from "../common/types"; import Operation from "./Operation"; interface Like<Params = any> extends Operation<Params> { run: TagFunctionVariable<Params, string>; caseSensitive: boolean; notLike: boolean; } declare function Like<Params>(run: TagFunctionVariable<Params, string> | string, caseSensitive?: boolean, notLike?: boolean): Like<Params>; declare namespace Like { var isLike: (x: any) => x is Like; } export default Like;