eslint-plugin-obsidian
Version:
ESLint rules for Obsidian
11 lines • 359 B
TypeScript
import type { Type } from './type';
export declare class TypeLiteral implements Type {
private readonly name;
static isTypeLiteral(type: Type): type is TypeLiteral;
toString(): string[];
isEmpty(): boolean;
equals(types: Type[]): boolean;
includes(type: Type[]): boolean;
size(): number;
}
//# sourceMappingURL=typeLiteral.d.ts.map