@sequeljs/ast
Version:
A SQL AST manager for JavaScript
11 lines • 415 B
TypeScript
import Unary from './Unary';
import type Attribute from '../attributes/Attribute';
export default class UnqualifiedColumn extends Unary<Attribute> {
get attribute(): this['expr'];
set attribute(val: this['expr']);
get column(): this['name'];
get name(): Attribute['name'];
get relation(): Attribute['relation'];
constructor(expr: Attribute);
}
//# sourceMappingURL=UnqualifiedColumn.d.ts.map