1from typing import Any, Dict
2
3from github.GithubObject import NonCompletableGithubObject
4from github.Issue import Issue
5
6class TimelineEventSource(NonCompletableGithubObject):
7    def __repr__(self) -> str: ...
8    def _initAttributes(self) -> None: ...
9    def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
10    @property
11    def type(self) -> str: ...
12    @property
13    def issue(self) -> Issue: ...
14