From ecedee59a3e7e7751210952cb40aea66c813343b Mon Sep 17 00:00:00 2001 From: Karol Rzotki Date: Mon, 18 Nov 2024 11:38:20 +0100 Subject: [PATCH] fix(lint): Change type to interface --- .../react-query/files/lib/queries.ts__tmpl__ | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/gene-tools/src/generators/service-generator/react-query/files/lib/queries.ts__tmpl__ b/packages/gene-tools/src/generators/service-generator/react-query/files/lib/queries.ts__tmpl__ index b356e4b..d4973fe 100644 --- a/packages/gene-tools/src/generators/service-generator/react-query/files/lib/queries.ts__tmpl__ +++ b/packages/gene-tools/src/generators/service-generator/react-query/files/lib/queries.ts__tmpl__ @@ -4,10 +4,10 @@ import { } from '@brainly-gene/core'; import nodeFetch from 'node-fetch'; -export type <%= fileName %>DataTypeAPI = { +export interface <%= fileName %>DataTypeAPI { title: string; }; -export type VariablesType = { +export interface VariablesType { id: number };