role type fix

This commit is contained in:
MathMan05 2025-11-17 18:05:37 -06:00
parent db2befeab6
commit f27d77a06c

View File

@ -25,9 +25,11 @@ export interface RoleModifySchema {
position?: number;
icon?: string;
unicode_emoji?: string;
colors?: {
primary_color: number;
secondary_color: number | null | undefined; // only used for "holographic" and "gradient" styles
tertiary_color?: number | null | undefined; // only used for "holographic" style
} | undefined;
colors?:
| {
primary_color: number;
secondary_color?: number | null | undefined; // only used for "holographic" and "gradient" styles
tertiary_color?: number | null | undefined; // only used for "holographic" style
}
| undefined;
}