mirror of
https://github.com/morten-olsen/refocus.dev.git
synced 2026-02-08 00:46:25 +01:00
19 lines
526 B
TypeScript
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 };
|