echoes/frontend/contracts/generalContract.ts

10 lines
266 B
TypeScript
Raw Normal View History

export type SerializeType = null | number | string | boolean | { [key: string]: SerializeType } | Array<SerializeType>;
export interface Configuration {
[key: string]: {
title: string;
description?: string;
data: SerializeType;
};
}