useModelProps.ts 274 B

1234567891011121314
  1. type postPathStrings = "guardar";
  2. interface useModelProps {
  3. name: string;
  4. id: string | number;
  5. fields: string | null;
  6. expand: string | null;
  7. extraParams: object | null;
  8. redirectOnPost: boolean;
  9. postPath: postPathStrings | string;
  10. }
  11. export { useModelProps };