diff --git a/src/components/GitProfile.jsx b/src/components/GitProfile.jsx index 8b7bdaa..f0f2973 100644 --- a/src/components/GitProfile.jsx +++ b/src/components/GitProfile.jsx @@ -255,6 +255,8 @@ GitProfile.propTypes = { dev: PropTypes.string, stackoverflow: PropTypes.string, website: PropTypes.string, + skype: PropTypes.string, + telegram: PropTypes.string, phone: PropTypes.string, email: PropTypes.string, }), diff --git a/types/index.d.ts b/types/index.d.ts index 4692db7..80e5179 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -94,6 +94,16 @@ export interface Social { */ website?: string; + /** + * Skype username + */ + skype?: string; + + /** + * Telegram username + */ + telegram?: string; + /** * Phone */ @@ -318,6 +328,6 @@ export interface GitProfileProps { config: Config; } -declare class GitProfile extends Component {} +declare class GitProfile extends Component { } export default GitProfile;