mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
cfb1474eb8
* all login methods no longer use redux * removed redux from registration * redirect user from registration * removed redux from sso invite * removed redundant component * refactored user settings page * removed redux from logout * cleaned up unused redux calls * lint fixes * removed test * removed old config interface * fixed registration bug * team permission fix * removed remaining redux references from pages - #4436 * better way to set config
20 lines
415 B
TypeScript
20 lines
415 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
version: PropTypes.string,
|
|
branch: PropTypes.string,
|
|
revision: PropTypes.string,
|
|
go_version: PropTypes.string,
|
|
build_date: PropTypes.string,
|
|
build_user: PropTypes.string,
|
|
});
|
|
|
|
export interface IVersionData {
|
|
version: string;
|
|
branch: string;
|
|
revision: string;
|
|
go_version: string;
|
|
build_date: string;
|
|
build_user: string;
|
|
}
|