Use 'import type' to import types, eliminate webpack warnings (#358)

This commit is contained in:
Matthias Frey
2021-09-11 09:27:22 +02:00
committed by GitHub
parent bc87c0a3e1
commit 63ee33b685
16 changed files with 21 additions and 21 deletions

View File

@@ -1,10 +1,10 @@
import { AccessWithGranteeUser } from './access-with-grantee-user.type';
import { DateRange } from './date-range.type';
import { Granularity } from './granularity.type';
import { OrderWithAccount } from './order-with-account.type';
import { RequestWithUser } from './request-with-user.type';
import type { AccessWithGranteeUser } from './access-with-grantee-user.type';
import type { DateRange } from './date-range.type';
import type { Granularity } from './granularity.type';
import type { OrderWithAccount } from './order-with-account.type';
import type { RequestWithUser } from './request-with-user.type';
export {
export type {
AccessWithGranteeUser,
DateRange,
Granularity,