Files
refocus.dev/packages/widgets/src/github/workflow-runs/schema.ts
2023-06-19 09:25:03 +02:00

12 lines
211 B
TypeScript

import { Type, Static } from '@sinclair/typebox';
const schema = Type.Object({
owner: Type.String(),
repo: Type.String(),
});
type Props = Static<typeof schema>;
export type { Props };
export { schema };