1
2
3
4
export const add = (opts: {
a: number;
b: number;
}) => opts.a + opts.b;