fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 16 lines 399 B view raw
1import type { 2 IR, 3 NamingConfig, 4 SchemaProcessorContext, 5 SchemaProcessorResult, 6} from '@hey-api/shared'; 7 8import type { IrSchemaToAstOptions } from './types'; 9 10export type ProcessorContext = Pick<IrSchemaToAstOptions, 'plugin'> & 11 SchemaProcessorContext & { 12 naming: NamingConfig; 13 schema: IR.SchemaObject; 14 }; 15 16export type ProcessorResult = SchemaProcessorResult<ProcessorContext>;