From e4dd47613c43af62ca5ba03cb4de8bc0181ea8f4 Mon Sep 17 00:00:00 2001 From: Thomas Lefebvre Date: Tue, 29 Jun 2021 12:14:49 -0400 Subject: [PATCH] Export topic methods --- src/internals.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/internals.ts b/src/internals.ts index ffdeb8a..292b3c3 100644 --- a/src/internals.ts +++ b/src/internals.ts @@ -1,7 +1,8 @@ import * as collections from './methods/collections'; import * as photos from './methods/photos'; import * as search from './methods/search'; +import * as topics from './methods/topics'; import * as users from './methods/users'; export { trackNonHotLinkedPhotoView } from './beacon'; -export { collections, photos, search, users }; +export { collections, photos, search, users, topics };