quartz/fetchjson/features/functions.ts
2022-02-15 20:16:04 +08:00

3 lines
68 B
TypeScript

const add = (a: number, b: number): number => {
return a + b;
};