Open infctr opened 4 years ago
type Type1<TKey extends string> = Partial<{ // %foo foo: boolean; /* %baz */ baz: boolean; /** * %bar */ bar: boolean; /* %bam */ bam: boolean; }> & {/* %foo */ foo: boolean; // %baz baz: boolean; /** * %bar */ bar?: boolean; } & { [K in keyof TKey]: boolean; };
/* %bam */ bam: boolean; line causes linter to fail with Fix objects must not be overlapped in a report.
/* %bam */ bam: boolean;
Fix objects must not be overlapped in a report.
/* %bam */ bam: boolean;
line causes linter to fail withFix objects must not be overlapped in a report.