Files
ox_lib/web/src/interfaces/index.tsx

10 lines
176 B
TypeScript
Raw Normal View History

export interface Option {
description?: string;
metadata?: string[] | { [key: string]: any };
subMenu?: boolean;
}
export interface Options {
[key: string]: Option;
}