We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6a48ab commit a11c040Copy full SHA for a11c040
src/index.ts
@@ -1,7 +1,6 @@
1
import { clientConstructor } from './create-client'
2
import { Forms } from './forms'
3
import { Images } from './images'
4
-import { Teams } from './teams'
5
import { Themes } from './themes'
6
import { Workspaces } from './workspaces'
7
import { Responses } from './responses'
@@ -16,7 +15,6 @@ export const createClient = (args: Typeform.ClientArg = { token: null }) => {
16
15
return {
17
forms: new Forms(http),
18
images: new Images(http),
19
- teams: new Teams(http),
20
themes: new Themes(http),
21
workspaces: new Workspaces(http),
22
responses: new Responses(http),
src/teams.ts
tests/unit/teams.test.ts
0 commit comments