mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 07:26:02 +01:00
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
|
|
export interface Option {
|
||
|
|
description?: string;
|
||
|
|
metadata?: string[] | { [key: string]: any };
|
||
|
|
subMenu?: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Options {
|
||
|
|
[key: string]: Option;
|
||
|
|
}
|