From e7db167bf262ba10549734965c5020f552fa8fc8 Mon Sep 17 00:00:00 2001 From: Aman Kumar Date: Tue, 8 Apr 2025 10:31:40 +0530 Subject: [PATCH] feat: Export GraphqlApiClient, Launch, config, and Apollo Client utilities --- src/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/index.ts b/src/index.ts index e32b0b2..8c76fe6 100755 --- a/src/index.ts +++ b/src/index.ts @@ -1 +1,5 @@ export {run} from '@oclif/core' +export { GraphqlApiClient } from './util/index'; +export { default as Launch } from './commands/launch/index'; +export { default as config } from './config/index'; +export { ApolloClient, gql, DocumentNode } from '@apollo/client/core'; \ No newline at end of file