You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.2 KiB
42 lines
1.2 KiB
4 years ago
|
/// <reference types="node" />
|
||
|
declare type ParseOpts = {
|
||
|
name?: string;
|
||
|
types?: number[];
|
||
|
text: string;
|
||
|
};
|
||
|
declare type BindOpts = {
|
||
|
portal?: string;
|
||
|
binary?: boolean;
|
||
|
statement?: string;
|
||
|
values?: any[];
|
||
|
};
|
||
|
declare type ExecOpts = {
|
||
|
portal?: string;
|
||
|
rows?: number;
|
||
|
};
|
||
|
declare type PortalOpts = {
|
||
|
type: 'S' | 'P';
|
||
|
name?: string;
|
||
|
};
|
||
|
declare const serialize: {
|
||
|
startup: (opts: Record<string, string>) => Buffer;
|
||
|
password: (password: string) => Buffer;
|
||
|
requestSsl: () => Buffer;
|
||
|
sendSASLInitialResponseMessage: (mechanism: string, initialResponse: string) => Buffer;
|
||
|
sendSCRAMClientFinalMessage: (additionalData: string) => Buffer;
|
||
|
query: (text: string) => Buffer;
|
||
|
parse: (query: ParseOpts) => Buffer;
|
||
|
bind: (config?: BindOpts) => Buffer;
|
||
|
execute: (config?: ExecOpts | undefined) => Buffer;
|
||
|
describe: (msg: PortalOpts) => Buffer;
|
||
|
close: (msg: PortalOpts) => Buffer;
|
||
|
flush: () => Buffer;
|
||
|
sync: () => Buffer;
|
||
|
end: () => Buffer;
|
||
|
copyData: (chunk: Buffer) => Buffer;
|
||
|
copyDone: () => Buffer;
|
||
|
copyFail: (message: string) => Buffer;
|
||
|
cancel: (processID: number, secretKey: number) => Buffer;
|
||
|
};
|
||
|
export { serialize };
|