eslint-plugin-obsidian
Version:
ESLint rules for Obsidian
12 lines • 393 B
TypeScript
import type { TSESTree } from '@typescript-eslint/types';
import type { Type } from './type';
export declare class SingleType implements Type {
private props;
constructor(props: TSESTree.Identifier);
toString(): string[];
isEmpty(): boolean;
equals(types: Type[]): boolean;
includes(type: Type[]): boolean;
size(): number;
}
//# sourceMappingURL=singleType.d.ts.map