mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 06:56:20 +00:00
10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { IPartColor } from '@nitrots/nitro-renderer';
|
|
import { IAvatarEditorCategoryPartItem } from './IAvatarEditorCategoryPartItem';
|
|
|
|
export interface IAvatarEditorCategory
|
|
{
|
|
setType: string;
|
|
partItems: IAvatarEditorCategoryPartItem[];
|
|
colorItems: IPartColor[][];
|
|
}
|