Skip to content

Commit 9955bf7

Browse files
committed
chore: bump version, fix type name
1 parent cc87d8c commit 9955bf7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

connection/connection_params.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ConnectionParamsError } from "../client/error.ts";
33
import { fromFileUrl, isAbsolute } from "../deps.ts";
44
import { OidType } from "../query/oid.ts";
55
import { DebugControls } from "../debug.ts";
6-
import { ParseArrayFunc } from "../query/array_parser.ts";
6+
import { ParseArrayFunction } from "../query/array_parser.ts";
77

88
/**
99
* The connection string must match the following URI structure. All parameters but database and user are optional
@@ -117,7 +117,7 @@ export type Decoders = {
117117
export type DecoderFunction = (
118118
value: string,
119119
oid: number,
120-
parseArray: ParseArrayFunc,
120+
parseArray: ParseArrayFunction,
121121
) => unknown;
122122

123123
/**

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lock": false,
33
"name": "@bartlomieju/postgres",
4-
"version": "0.18.1",
4+
"version": "0.19.1",
55
"exports": "./mod.ts"
66
}

query/array_parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ type AllowedSeparators = "," | ";";
66
type ArrayResult<T> = Array<T | null | ArrayResult<T>>;
77
type Transformer<T> = (value: string) => T;
88

9-
export type ParseArrayFunc = typeof parseArray;
9+
export type ParseArrayFunction = typeof parseArray;
1010

1111
/**
1212
* Parse a string into an array of values using the provided transform function.

0 commit comments

Comments
 (0)