fix: 去除 setPosition

This commit is contained in:
奔跑的面条 2022-10-16 10:29:01 +08:00
parent ff79ec08ae
commit 3ac7b574c4
2 changed files with 0 additions and 8 deletions

View File

@ -115,7 +115,6 @@ export interface PublicConfigType {
}
filter?: string
status: StatusType
setPosition: Function
events?: {
[K in EventLife]?: string
}

View File

@ -81,13 +81,6 @@ export class PublicConfigClass implements PublicConfigType {
public request = cloneDeep(requestConfig)
// 数据过滤
public filter = undefined
// 设置坐标
public setPosition(x: number, y: number): void {
this.attr.x = x
this.attr.y = y
}
// 事件
public events = undefined
}