1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
//// [arrowFunctionParsingGenericInObject.ts]
const fn1 = () => ({
test: <T = undefined>(value: T): T => value,
extraValue: () => {},
})
const fn1async = () => ({
test: async <T = undefined>(value: T): Promise<T> => value,
extraValue: () => {},
})
const fn2 = () => ({
test: <T>(value: T): T => value,
extraValue: () => {},
})
const fn2async = () => ({
test: async <T>(value: T): Promise<T> => value,
extraValue: () => {},
})
const fn3 = () => ({
extraValue: () => {},
test: <T = undefined>(value: T): T => value,
})
const fn3async = () => ({
extraValue: () => {},
test: async <T = undefined>(value: T): Promise<T> => value,
})
const fn4 = () => ({
extraValue: '',
test: <T = undefined>(value: T): T => value,
})
const fn4async = () => ({
extraValue: '',
test: async <T = undefined>(value: T): Promise<T> => value,
})
//// [arrowFunctionParsingGenericInObject.js]
const fn1 = () => ({
test: (value) => value,
extraValue: () => { },
});
const fn1async = () => ({
test: async (value) => value,
extraValue: () => { },
});
const fn2 = () => ({
test: (value) => value,
extraValue: () => { },
});
const fn2async = () => ({
test: async (value) => value,
extraValue: () => { },
});
const fn3 = () => ({
extraValue: () => { },
test: (value) => value,
});
const fn3async = () => ({
extraValue: () => { },
test: async (value) => value,
});
const fn4 = () => ({
extraValue: '',
test: (value) => value,
});
const fn4async = () => ({
extraValue: '',
test: async (value) => value,
});
|