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