Skip to content

Commit

Permalink
fix: types export (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
jotanarciso authored Aug 16, 2024
1 parent 5dab874 commit 6413f52
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,4 @@ function createClient({ token, debug = false }: ClientConfig = {}): AzionClient
export { createClient, defineConfig };
export default createClient;

export * from './types';
export type * from './types';
2 changes: 1 addition & 1 deletion packages/config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,4 @@ export function defineConfig(config: AzionConfig): AzionConfig {
return config;
}

export * from './types';
export type * from './types';
2 changes: 1 addition & 1 deletion packages/jwt/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ export { decode, sign, verify };

export default jwt;

export * from './common/types';
export type * from './common/types';
2 changes: 1 addition & 1 deletion packages/purge/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,4 @@ export {
};
export default client;

export * from './types';
export type * from './types';
2 changes: 1 addition & 1 deletion packages/utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { mountMPA, mountSPA } from './hooks/index';

export { mountMPA, mountSPA };

export * from './hooks/types';
export type * from './hooks/types';
2 changes: 1 addition & 1 deletion packages/wasm-image-processor/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,4 @@ async function loadImage(pathOrURL: string): Promise<WasmImage> {
export { clean, getImageResponse, loadImage, resize };
export default loadImage;

export * from './types';
export type * from './types';

0 comments on commit 6413f52

Please sign in to comment.