js-slang
Version:
Javascript-based implementations of Source, written in Typescript
10 lines (9 loc) • 384 B
TypeScript
import type { ImportSpecifier } from 'estree';
import type { Rule } from '../../types';
import { RuleError } from '../../errors';
export declare class NoImportSpecifierWithDefaultError extends RuleError<ImportSpecifier> {
explain(): string;
elaborate(): string;
}
declare const noImportSpecifierWithDefault: Rule<ImportSpecifier>;
export default noImportSpecifierWithDefault;