prettier/tests/typescript_generic/object-method.ts

6 lines
69 B
TypeScript

export default {
load<K, T>(k: K, t: T) {
return {k, t};
}
}