File size: 299 Bytes
fdaf912
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
export interface QueryMenuHandler {
  showUpload: boolean,
  setShowUpload: (showUpload: boolean) => void,
  showChat: boolean,
  setShowChat: (showChat: boolean) => void,
  showManage: boolean,
  setShowManage: (showManage: boolean) => void,
  setCollSelectedId: (collSelectedId: string) => void,
}