From 57c8b253355ed697da761d52910d8926d53effd0 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 23 Dec 2024 12:27:18 +0100 Subject: [PATCH] front: drop IsoDurationString This is now unused. Signed-off-by: Simon Ser --- front/src/common/types.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/front/src/common/types.ts b/front/src/common/types.ts index c8b5b0778ae..371c2aadae8 100644 --- a/front/src/common/types.ts +++ b/front/src/common/types.ts @@ -15,12 +15,6 @@ export const DATA_TYPES = { */ export type TimeString = string; -/** - * A ISO 8601 duration string - * @example "PT3600S" - */ -export type IsoDurationString = string; - export type RangedValue = { begin: number; end: number;