feat: extract cloudly api client

This commit is contained in:
2026-04-25 14:57:58 +00:00
commit baaeda3b57
19 changed files with 11166 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { tap } from '@git.zone/tstest/tapbundle';
import { CloudlyApiClient } from '../ts/index.js';
tap.test('exports CloudlyApiClient', async () => {
if (typeof CloudlyApiClient !== 'function') {
throw new Error('CloudlyApiClient is not exported');
}
});
export default tap.start();