summaryrefslogtreecommitdiff
path: root/server/web/src/interfaces/components/Select.interface.ts
blob: 994a5a402754f4da20e0f984a6d2449de0ab2fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export interface ISelect {
    blacklistRemove?: any;
    sessionRemove?: any;
    blacklistAdd?: any;
    clientRemove?: any;
    sessionAdd?: any;
    left?: number;
    show: boolean;
    top?: number;
}

export interface IState {}