Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. (method) CreateFlightComponent.handleSave({ currentValue, stepIndex }: {
  2. currentValue: Partial<Flight>;
  3. stepIndex: number;
  4. }): void
  5.  
  6. handleSave({
  7. currentValue,
  8. stepIndex
  9. }: {
  10. currentValue: Partial<Flight>;
  11. stepIndex: number;
  12. }) {
  13. // some code here
  14. }
  15.  
  16. { currentValue, stepIndex }: {
  17. currentValue: Partial<Flight>;
  18. stepIndex: number;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement