mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-27 22:16:16 -05:00
19 lines
439 B
TypeScript
19 lines
439 B
TypeScript
export type TSourceGithubType =
|
|
| "notifications"
|
|
| "repositorynotifications"
|
|
| "searchissuesandpullrequests"
|
|
| "useractivities"
|
|
| "repositoryactivities"
|
|
| "organizationactivitiespublic"
|
|
| "organizationactivitiesprivate";
|
|
|
|
export interface ISourceOptionsGithub {
|
|
type?: TSourceGithubType;
|
|
participating?: boolean;
|
|
repository?: string;
|
|
user?: string;
|
|
organization?: string;
|
|
queryName?: string;
|
|
query?: string;
|
|
}
|