mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
16 lines
265 B
TypeScript
16 lines
265 B
TypeScript
export interface Option {
|
|
menu?: string;
|
|
description?: string;
|
|
metadata?: string[] | { [key: string]: any };
|
|
}
|
|
|
|
export interface Options {
|
|
[key: string]: Option;
|
|
}
|
|
|
|
export interface ContextMenuProps {
|
|
title: string;
|
|
menu?: string;
|
|
options: Options;
|
|
}
|