mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
secret: PropTypes.string,
|
|
created_at: PropTypes.string,
|
|
team_id: PropTypes.number,
|
|
});
|
|
|
|
export interface IEnrollSecret {
|
|
secret: string;
|
|
created_at: string;
|
|
team_id?: number;
|
|
}
|