mirror of
https://github.com/go-gost/gost-ui.git
synced 2024-08-11 17:53:29 +00:00
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
export type Template = {
|
|
label: string | { [key: string]: string };
|
|
json: string;
|
|
cli?: string;
|
|
children?: Template[];
|
|
};
|