/** * 过滤类型 */ export type FilterType = "element" | "instance"; /** * 过滤器 */ export interface IFilter { type: FilterType; }