From 5d6aaed64baef26188705514459247ad33448405 Mon Sep 17 00:00:00 2001 From: Alex Tideman Date: Wed, 10 Jul 2024 16:29:18 -0500 Subject: [PATCH] Export inferface for Spec --- src/lib/types/nexus.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/types/nexus.ts b/src/lib/types/nexus.ts index 680b8ee85..2da8b554c 100644 --- a/src/lib/types/nexus.ts +++ b/src/lib/types/nexus.ts @@ -1,6 +1,6 @@ import type { Endpoint, EndpointSpec } from '$lib/types'; -interface NexusEndpointSpec extends EndpointSpec { +export interface NexusEndpointSpec extends EndpointSpec { descriptionString?: string; allowedCallerNamespaces?: string[]; }