diff --git a/src/types/onyx/ReportNextStep.ts b/src/types/onyx/ReportNextStep.ts new file mode 100644 index 000000000000..e48fec41886e --- /dev/null +++ b/src/types/onyx/ReportNextStep.ts @@ -0,0 +1,15 @@ +type NextStepButton = { + text: string, + tooltip: string, + disabled: boolean, +}; + +type ReportNextStep = { + /** Buttons to display as the next step in the report in group policies */ + buttons: { + approve: NextStepButton, + reimburse: NextStepButton, + } +}; + +export default ReportNextStep;