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