51timapi
Version:
TimApi is a traffic related plugin for WdpApi.
35 lines (34 loc) • 1.15 kB
TypeScript
export declare class EventListObj {
private list;
private dbList;
private enterList;
private outList;
private listType;
private dbListType;
private enterListType;
private outListType;
Get(eid?: string): any;
Set(obj: any, func: any): void;
Remove(eid?: string): void;
GetDb(eid?: string): any;
SetDb(obj: any, func: any): void;
RemoveDb(eid?: string): void;
GetEnter(eid?: string): any;
SetEnter(obj: any, func: any): void;
RemoveEnter(eid?: string): void;
GetOut(eid?: string): any;
SetOut(obj: any, func: any): void;
RemoveOut(eid?: string): void;
GetType(type?: string): any;
SetType(type: string, func: any): void;
RemoveType(type?: string): void;
GetDbType(type?: string): any;
SetDbType(type: string, func: any): void;
RemoveDbType(type?: string): void;
GetEnterType(type?: string): any;
SetEnterType(type: string, func: any): void;
RemoveEnterType(type?: string): void;
GetOutType(type?: string): any;
SetOutType(type: string, func: any): void;
RemoveOutType(type?: string): void;
}