Skip to content

Commit

Permalink
remove unused type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lmauromb committed Sep 13, 2023
1 parent 7764682 commit 7253f90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/meteor/ee/app/license/server/fromV2toV3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Transform a License V2 into a V3 representation.
*/

import type { ILicenseV2, ILicenseV3, Module, LicenseLimit, LicensePeriod } from '@rocket.chat/core-typings';
import type { ILicenseV2, ILicenseV3, Module } from '@rocket.chat/core-typings';

import { isBundle, getBundleFromModule, getBundleModules } from './bundles';
import { getTagColor } from './getTagColor';
Expand Down Expand Up @@ -42,7 +42,7 @@ export const fromV2toV3 = (v2: ILicenseV2): ILicenseV3 => {
{
validUntil: new Date(Date.parse(v2.expiry)).toISOString(),
invalidBehavior: 'invalidate_license',
} as LicensePeriod,
},
],
statisticsReport: {
required: false,
Expand Down

0 comments on commit 7253f90

Please sign in to comment.