UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

5 lines (4 loc) 134 B
/** * Utility type that omits the `kind` property from an object type. */ export type Kindless<T extends object> = Omit<T, "kind">;