SR
Size: a a a
SR
DS
НС
НС
V
НС
V
D
кY
кY
кY
declare const concat: {что тестируют подобные этим тесты?
(value1: string, value2: string): string;
(value1: number, value2: number): string;
};
export default concat;
import {expectType} from 'tsd';
import concat from '.';
expectType<string>(concat('foo', 'bar'));
expectType<string>(concat(1, 2));
MK
MK
кY
кY
FL
N👩
N👩
FL