Files
refocus.dev/packages/widgets/src/github/index.ts
2023-06-19 16:33:42 +02:00

19 lines
526 B
TypeScript

import { Widget } from '@refocus/sdk';
import githubProfileWidget from './profile/index.widget';
import pullRequest from './pull-request/index.widget';
import pullRequstComments from './pull-request-comments/index.widget';
import workflowRun from './workflow-run/index.widget';
import workflowRuns from './workflow-runs/index.widget';
import file from './file';
const github = [
githubProfileWidget,
pullRequest,
pullRequstComments,
workflowRun,
workflowRuns,
file,
] satisfies Widget<any>[];
export { github };