mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
18 lines
328 B
TypeScript
18 lines
328 B
TypeScript
|
|
import PropTypes from "prop-types";
|
||
|
|
|
||
|
|
export default PropTypes.shape({
|
||
|
|
id: PropTypes.number,
|
||
|
|
uid: PropTypes.number,
|
||
|
|
username: PropTypes.string,
|
||
|
|
type: PropTypes.string,
|
||
|
|
groupname: PropTypes.string,
|
||
|
|
});
|
||
|
|
|
||
|
|
export interface IHostUser {
|
||
|
|
id: number;
|
||
|
|
uid: number;
|
||
|
|
username: string;
|
||
|
|
type: string;
|
||
|
|
groupname: string;
|
||
|
|
}
|