From 0d28fd5834745689c5e0e368cd490a7d5bb0eb66 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 8 Jan 2025 09:29:27 -0600 Subject: [PATCH] Use package exports Co-authored-by: Matthieu Sieben --- src/types/atproto/starterPack.ts | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/src/types/atproto/starterPack.ts b/src/types/atproto/starterPack.ts index 513b4750bd..0064e16bc6 100644 --- a/src/types/atproto/starterPack.ts +++ b/src/types/atproto/starterPack.ts @@ -1,17 +1,7 @@ import {AppBskyGraphDefs} from '@atproto/api' -export { - /** - * Renamed to clarify source of this util, but directly aliases the original. - * {@link AppBskyGraphDefs.isStarterPackViewBasic} - */ - isStarterPackViewBasic as isBasicView, - /** - * Renamed to clarify source of this util, but directly aliases the original. - * {@link AppBskyGraphDefs.isStarterPackView} - */ - isStarterPackView as isView, -} from '@atproto/api/dist/client/types/app/bsky/graph/defs' +export const isBasicView = AppBskyGraphDefs.isStarterPackViewBasic +export const isView = AppBskyGraphDefs.isStarterPackView /** * Matches any starter pack view exported by our SDK