import { inputShapeKey, type SchemaTypes } from '../types'; import { BaseTypeRef } from './base'; export class InputTypeRef extends BaseTypeRef { override kind; $inferInput!: T; [inputShapeKey]!: T; constructor(kind: 'Enum' | 'InputObject' | 'Scalar', name: string) { super(kind, name); this.kind = kind; } }