mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
[feature-136] Models panel + models linkage + models linkage modals + some cleaning
This commit is contained in:
@@ -17,8 +17,18 @@ export interface MSModel {
|
||||
date: string
|
||||
}
|
||||
|
||||
export type MSModelType = "saber"|"platform"|"bloq"|"misc"|"avatar";
|
||||
export type MSModelPlatform = "pc"|"quest"|"all";
|
||||
export enum MSModelType {
|
||||
Avatar = "avatar",
|
||||
Saber = "saber",
|
||||
Platfrom = "platform",
|
||||
Bloq = "bloq"
|
||||
};
|
||||
|
||||
export enum MSModelPlatform {
|
||||
PC = "pc",
|
||||
QUEST = "quest",
|
||||
ALL = "all"
|
||||
};
|
||||
|
||||
export interface MSGetQuery {
|
||||
type?: MSModelType;
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
import { MSModelType } from "./model-saber.model";
|
||||
|
||||
export const MODEL_TYPE_FOLDERS = {
|
||||
[MSModelType.Avatar]: "CustomAvatars",
|
||||
[MSModelType.Bloq]: "CustomNotes",
|
||||
[MSModelType.Platfrom]: "CustomPlatforms",
|
||||
[MSModelType.Saber]: "CustomSabers"
|
||||
}
|
||||
Reference in New Issue
Block a user