Newer
Older
percord / src / schemas / api / guilds / Role.ts
@Rory& Rory& on 17 Dec 382 bytes Prettier 2
export class RoleColors {
	primary_color: number;
	secondary_color: number | undefined; // only used for "holographic" and "gradient" styles
	tertiary_color?: number | undefined; // only used for "holographic" style

	toJSON(): RoleColors {
		return {
			...this,
			secondary_color: this.secondary_color ?? undefined,
			tertiary_color: this.tertiary_color ?? undefined,
		};
	}
}