Skip to content

Commit

Permalink
feat: prevent importing the complete library implicitly, force import…
Browse files Browse the repository at this point in the history
… types explicitly

BREAKING CHANGE: Any imports from types/all should be modified to explicitly import the relevant types.

Before:

import { KalturaPermissionFilter, UserLoginByLoginIdAction } from 'kaltura-typescript-client/types/all';

After:

import { KalturaPermissionFilter } from 'kaltura-typescript-client/types/KalturaPermissionFilter';
import { UserLoginByLoginIdAction } from 'kaltura-typescript-client/types/UserLoginByLoginIdAction';
  • Loading branch information
eransakal committed Jul 13, 2017
1 parent 59b0ac6 commit cdfa3a6
Showing 1 changed file with 0 additions and 2,267 deletions.
Loading

0 comments on commit cdfa3a6

Please sign in to comment.