interface PaintBrushAction {
    color: string;
    end?: boolean;
    ready: boolean;
    state?: PaintBrushState;
    timestamp?: number;
    type: PaintBrushTypeEnum;
    uuid: string;
}

Properties

color: string

颜色色值

end?: boolean

是否是结尾数据

ready: boolean

是否就绪

状态值

timestamp?: number

时间戳:当作 uuid 使用

类型枚举

uuid: string