mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-25 04:31:45 -05:00
Format the Deno code via "deno fmt" to use the defined code style from the "deno.json" file.
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;
|
|
}
|