Skip to content

Commit 0825eb0

Browse files
committed
Fix linting issues
1 parent 9b232c6 commit 0825eb0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Json } from "@hyperjump/json-pointer";
22

33

44
export type SchemaFragment = string | number | boolean | null | SchemaObject | SchemaFragment[];
5-
export type SchemaObject = { // eslint-disable-line @typescript-eslint/consistent-indexed-object-style
5+
export type SchemaObject = {
66
[keyword: string]: SchemaFragment;
77
};
88

openapi-3-0/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type Xml = {
5757
wrapped?: boolean;
5858
};
5959

60-
type OpenApi = {
60+
export type OpenApi30 = {
6161
openapi: string;
6262
info: Info;
6363
externalDocs?: ExternalDocs;

0 commit comments

Comments
 (0)