refactor(nui): Move context items into separate files

This commit is contained in:
Luke
2022-03-27 18:17:26 +02:00
parent ccf00a6a9e
commit ac832d4840
5 changed files with 201 additions and 194 deletions

View File

@@ -0,0 +1,9 @@
export interface Option {
description?: string;
metadata?: string[] | { [key: string]: any };
subMenu?: boolean;
}
export interface Options {
[key: string]: Option;
}