Skip to content

Commit

Permalink
types: Added export type keyword in front of all exports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexiglesias93 committed Sep 29, 2021
1 parent a25bb3d commit 550dee7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@finsweet/ts-utils",
"version": "0.13.6",
"version": "0.13.7",
"description": "Typescript utils for custom Webflow projects.",
"main": "index.ts",
"module": "index.ts",
Expand Down
16 changes: 8 additions & 8 deletions types/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export { Entry } from './Entry';
export { FormField } from './FormField';
export { Instance } from './Instance';
export { PartialExcept } from './PartialExcept';
export { PickPartial } from './PickPartial';
export { PickRequired } from './PickRequired';
export { RequiredExcept } from './RequiredExcept';
export { Webflow } from './Webflow';
export type { Entry } from './Entry';
export type { FormField } from './FormField';
export type { Instance } from './Instance';
export type { PartialExcept } from './PartialExcept';
export type { PickPartial } from './PickPartial';
export type { PickRequired } from './PickRequired';
export type { RequiredExcept } from './RequiredExcept';
export type { Webflow } from './Webflow';

0 comments on commit 550dee7

Please sign in to comment.