ci: fix typechecking in ci

This commit is contained in:
iCrawl
2022-08-15 00:42:33 +02:00
parent cb856860b7
commit c052f56f3e
30 changed files with 887 additions and 1023 deletions

View File

@@ -1,7 +1,7 @@
import type { Type } from './index.js';
export interface Return {
type: Type;
type: Required<Type>;
nullable?: boolean;
description?: string;
}

View File

@@ -1,3 +1,3 @@
export interface Type {
names?: string[];
names?: string[] | undefined;
}

View File

@@ -1,7 +1,7 @@
import type { Type } from './index.js';
export interface VarType extends Type {
type?: Required<Type>;
description?: string;
nullable?: boolean;
type?: Required<Type> | undefined;
description?: string | undefined;
nullable?: boolean | undefined;
}