From c59c876a6aba2e65a816bde5c4c0adf04c28e78a Mon Sep 17 00:00:00 2001 From: MrFragIT Date: Mon, 2 Mar 2020 18:40:35 +0100 Subject: [PATCH] [Slonik] Added UUID type to TypeNameIdentifierType (#42632) --- types/slonik/index.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/types/slonik/index.d.ts b/types/slonik/index.d.ts index 55a80d264d..e397e7fb98 100644 --- a/types/slonik/index.d.ts +++ b/types/slonik/index.d.ts @@ -35,7 +35,8 @@ export type TypeNameIdentifierType = 'int4' | 'json' | 'text' | - 'timestamptz'; + 'timestamptz' | + 'uuid'; export type SerializableValueType = | string