This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/src/containers/people/IPeopleComponentProps.ts
Qolzam 99646c9222 [Refactoring][Breaking Changes]
- Move `reducers` and `actions` folders to `store` folder.
 - Move pages container components to `containers` folder.
2018-03-25 10:27:57 +07:00

38 lines
606 B
TypeScript

export interface IPeopleComponentProps {
/**
* Router match
*
* @type {*}
* @memberof IPeopleComponentProps
*/
match?: any
/**
* Circles loaded {true} or not {false}
*
* @type {boolean}
* @memberof IPeopleComponentProps
*/
circlesLoaded?: boolean
/**
* Rediret to another route
*
* @memberof IPeopleComponentProps
*/
goTo?: (url: string) => any
/**
* Set title of top bar
*
* @memberof IPeopleComponentProps
*/
setHeaderTitle?: (title: string) => any
/**
* Translate to locale string
*/
translate?: (state: any) => any
}