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