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