2024-11-22 13:13:04 +08:00
|
|
|
export type SerializeType =
|
|
|
|
| null
|
|
|
|
| number
|
|
|
|
| string
|
|
|
|
| boolean
|
|
|
|
| { [key: string]: SerializeType }
|
|
|
|
| Array<SerializeType>;
|
2024-11-19 00:20:31 +08:00
|
|
|
export interface Configuration {
|
2024-11-22 13:13:04 +08:00
|
|
|
[key: string]: {
|
|
|
|
title: string;
|
|
|
|
description?: string;
|
|
|
|
data: SerializeType;
|
|
|
|
};
|
2024-11-19 00:20:31 +08:00
|
|
|
}
|