Files
feeddeck/supabase/functions/_shared/models/sources/github.ts
Rico Berger 37cd4dff6f [core] Run "deno fmt" (#65)
Format the Deno code via "deno fmt" to use the defined code style from
the "deno.json" file.
2023-11-04 15:45:42 +01:00

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;
}