bms-repository/commands/add-object/template/api/blank.ts
pfych 0029086b3f
Some checks failed
Build & Lint / build-lint (push) Failing after 2m10s
Deploy / setup (push) Failing after 1m3s
Init
2024-10-12 14:08:09 +11:00

8 lines
248 B
TypeScript

import { {{ nameFirst }} } from '@baseline/types/{{ nameKebab }}';
export const {{ nameCamel }}Mapper = (data: {{ nameFirst }}): {{ nameFirst }} => {
const {{ nameCamel }}: {{ nameFirst }} = {{{ mapperFields }}
};
return {{ nameCamel }};
};