lml-main
Version:
This is now a mono repository published into many standalone packages.
9 lines (8 loc) • 355 B
TypeScript
import { JobModel } from '@lml/cosmo-ts-data';
import { JobFormType } from '../actions';
/**
* Create the request body for editing or posting a job
* Right now you can either clone or edit, but in the future
* there may be other types as well
*/
export declare const mkJobRequestBody: (form: any, jobFormType: JobFormType, baseJob?: JobModel) => any;