From 088eeac6868b29e1d334ebc98f5f100141c850c5 Mon Sep 17 00:00:00 2001 From: Jordan Ribbink Date: Thu, 28 Nov 2024 21:12:05 -0800 Subject: [PATCH] fix build --- packages/typedefs/src/sdk-transport/subscriptions.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/packages/typedefs/src/sdk-transport/subscriptions.ts b/packages/typedefs/src/sdk-transport/subscriptions.ts index 8ccc80d59..522073f4d 100644 --- a/packages/typedefs/src/sdk-transport/subscriptions.ts +++ b/packages/typedefs/src/sdk-transport/subscriptions.ts @@ -6,7 +6,6 @@ type SchemaItem = { // TODO: PLACEHOLDER - Replace with actual subscription topics export enum SubscriptionTopic { BLOCKS = "blocks", - FOO = "foo", } export type SubscriptionSchema = { @@ -18,14 +17,6 @@ export type SubscriptionSchema = { placeholder: string } > - [SubscriptionTopic.FOO]: SchemaItem< - { - x: number - }, - { - x: string - } - > } export type SubscriptionArguments =