mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
export interface IPrefixItem
|
|
{
|
|
id: number;
|
|
displayName?: string;
|
|
text: string;
|
|
color: string;
|
|
icon: string;
|
|
effect: string;
|
|
font?: string;
|
|
active: boolean;
|
|
isCustom?: boolean;
|
|
points?: number;
|
|
pointsType?: number;
|
|
catalogPrefixId?: number;
|
|
}
|