(value: string, params?: ReadonlyArray<unknown> | undefined)
| 162 | * @since 4.0.0 |
| 163 | */ |
| 164 | export const literal = (value: string, params?: ReadonlyArray<unknown> | undefined): Literal => ({ |
| 165 | _tag: "Literal", |
| 166 | value, |
| 167 | params |
| 168 | }) |
| 169 | |
| 170 | /** |
| 171 | * SQL identifier segment whose value is escaped by the active dialect compiler. |
no test coverage detected