fix ts issues

This commit is contained in:
Mutasem 2022-04-06 06:40:02 +02:00
parent 40c951fab9
commit 64a0cd2ae4

View file

@ -748,7 +748,7 @@ export interface ITemplatesNode extends IVersionNode {
export interface INodeMetadata { export interface INodeMetadata {
parametersLastUpdatedAt?: number; parametersLastUpdatedAt?: number;
}; }
export interface IRootState { export interface IRootState {
activeExecutions: IExecutionsCurrentSummaryExtended[]; activeExecutions: IExecutionsCurrentSummaryExtended[];
@ -967,7 +967,7 @@ export type IFormBoxConfig = {
export interface ITab { export interface ITab {
value: string | number; value: string | number;
label?: string; label?: string;
href?: string, href?: string;
icon?: string; icon?: string;
align?: 'right'; align?: 'right';
}; };