12 lines
221 B
TypeScript
12 lines
221 B
TypeScript
import { Type, type Static } from '@sinclair/typebox'
|
|
|
|
|
|
export const Stack = Type.Object({
|
|
name: Type.String(),
|
|
image: Type.String(),
|
|
description: Type.String()
|
|
});
|
|
|
|
|
|
export type Stack = Static<typeof Stack>;
|