We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5151b11 commit a035b4bCopy full SHA for a035b4b
src/schema-accessor.ts
@@ -29,7 +29,7 @@ export class InternalSchemaBasedAccessor implements SchemaAccessor {
29
this.internalSchema = internalSchema;
30
}
31
32
- async getInternalSchema(options?: Options): Promise<InternalSchema> {
+ async getInternalSchema(): Promise<InternalSchema> {
33
return this.internalSchema;
34
35
src/schema-convertors/internalToStandard.ts
@@ -2,6 +2,7 @@ import { InternalSchema } from '..';
2
import { StandardJSONSchema } from '../types';
3
4
export default function internalSchemaToStandard(
5
+ /* eslint @typescript-eslint/no-unused-vars: 0 */
6
internalSchema: InternalSchema,
7
options: {
8
signal?: AbortSignal
0 commit comments