From 7676c9e6ca670100fdd658a360a6b1a133056da4 Mon Sep 17 00:00:00 2001 From: Matatjahu Date: Thu, 25 Aug 2022 16:18:26 +0200 Subject: [PATCH] fix type --- src/schema-parser/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/schema-parser/index.ts b/src/schema-parser/index.ts index bc6498cd2..31b2a0e66 100644 --- a/src/schema-parser/index.ts +++ b/src/schema-parser/index.ts @@ -2,7 +2,7 @@ import type { Parser } from '../parser'; import type { AsyncAPISchema, DetailedAsyncAPI, SchemaValidateResult } from '../types'; export interface ValidateSchemaInput { - readonly asyncapi: Exclude; + readonly asyncapi: DetailedAsyncAPI; readonly data: D; readonly meta: M; readonly path: Array;