aboutsummaryrefslogtreecommitdiff
path: root/node_modules/mysql2/typings/mysql/lib/protocol/packets/Field.d.ts
blob: e97574c3fab2fb32b168f723f0ddec2677c73cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

declare interface Field {
    constructor: {
        name: 'Field'
    };
    db: string;
    table: string;
    name: string;
    type: string;
    length: number;
    string: Function;
    buffer: Function;
    geometry: Function;
}

export = Field;