(alias?: string)
| 338 | */ |
| 339 | as<TData>(alias: string): SQL.Aliased<TData>; |
| 340 | as(alias?: string): SQL<T> | SQL.Aliased<T> { |
| 341 | // TODO: remove with deprecated overloads |
| 342 | if (alias === undefined) { |
| 343 | return this; |
| 344 | } |
| 345 | |
| 346 | return new SQL.Aliased(this, alias); |
| 347 | } |
| 348 | |
| 349 | mapWith< |
| 350 | TDecoder extends |
no outgoing calls