/** * Type guard that narrows a `SchemaObject` to the variant whose `type` is * `'integer'`. * * Note: this guard matches `'integer'` exclusively. Use `isNumericSchema` to * match both `'number'` and `'integer'`. * * Works with `SchemaObject` types from OpenAPI 2.0, 3.0, 3.1, and 3.2. */ export declare const isIntegerSchema: (schema: T) => schema is [Extract] extends [never] ? T & { type: "integer"; } : Extract; //# sourceMappingURL=is-integer-schema.d.ts.map