Y
Size: a a a
Y
M
SG
M
Y
W
LH
W
SG
localeCompare
SG
SG
SG
W
Вт
MO
MO
DB
type A = <T>(b: T): void;
type Func = <T>(a: A<T>, b: T): void
MO
type A<T> = (b: T) => void;
type Func = <T>(a: A<T>, b: T) => void;
const useRequest: Func = (a, b) => {
a(b);
}
useRequest((y: number) => {
console.log(y)
}, 10)
VV
MO