UNPKG

@copilotkit/runtime

Version:

<div align="center"> <a href="https://copilotkit.ai" target="_blank"> <img src="https://github.com/copilotkit/copilotkit/raw/main/assets/banner.png" alt="CopilotKit Logo"> </a>

16 lines (12 loc) 327 B
import { Field, InputType, Int, createUnionType } from "type-graphql"; const PrimitiveUnion = createUnionType({ name: "Primitive", types: () => [String, Number, Boolean] as const, }); @InputType() export class CustomPropertyInput { @Field(() => String) key: string; @Field(() => PrimitiveUnion) value: string; }