From c5111282404100496b6a77a83a6c515bd8b05fe7 Mon Sep 17 00:00:00 2001 From: Jordan Lewallen Date: Sat, 12 Oct 2024 13:16:31 -0700 Subject: [PATCH] fix: export unstable GetResult type --- src/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/index.ts b/src/index.ts index 06ac6622..466a71bf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -29,3 +29,6 @@ export type { PostgrestSingleResponse, PostgrestMaybeSingleResponse, } from './types' +// https://github.com/supabase/postgrest-js/issues/551 +// To be replaced with a helper type that only uses public types +export type { GetResult as UnstableGetResult } from './select-query-parser/result'