Migrate components to typescript
This commit is contained in:
20
src/components/findPeople/IFindPeopleComponentProps.ts
Normal file
20
src/components/findPeople/IFindPeopleComponentProps.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Profile } from 'core/domain/users/profile'
|
||||
|
||||
export interface IFindPeopleComponentProps {
|
||||
|
||||
/**
|
||||
* Load users' profile
|
||||
*
|
||||
* @memberof IFindPeopleComponentProps
|
||||
*/
|
||||
loadPeople?: () => any
|
||||
|
||||
/**
|
||||
* Users' profile
|
||||
*
|
||||
* @type {{[userId: string]: Profile}}
|
||||
* @memberof IFindPeopleComponentProps
|
||||
*/
|
||||
peopleInfo?: {[userId: string]: Profile}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user