From 774915472bd0d1525999c783abc070d2d2e8ea06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Mal=C3=BD?= <michal.maly@ibt.cas.cz> Date: Mon, 10 Oct 2022 14:55:03 +0200 Subject: [PATCH] ReDNATCO plugin stage 24 --- src/apps/rednatco/api.ts | 2 +- src/apps/rednatco/idents.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/apps/rednatco/api.ts b/src/apps/rednatco/api.ts index 56f6799a5..e4b91fb28 100644 --- a/src/apps/rednatco/api.ts +++ b/src/apps/rednatco/api.ts @@ -10,7 +10,7 @@ export namespace ReDNATCOMspApi { } export type Filter = { type: 'filter', filter: Filters.All }; - export function Filter(filter: Filters.All) { + export function Filter(filter: Filters.All): Filter { return { type: 'filter', filter }; } diff --git a/src/apps/rednatco/idents.ts b/src/apps/rednatco/idents.ts index 9c7cd3470..96a74d6be 100644 --- a/src/apps/rednatco/idents.ts +++ b/src/apps/rednatco/idents.ts @@ -1,3 +1,5 @@ +/* eslint-disable array-bracket-spacing, no-multi-spaces, indent */ + export type ID = 'data' | /* Source structural data */ 'trajectory' | /* Source data parsed into trajectory */ -- GitLab