Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 182 Bytes

NavigationResult.md

File metadata and controls

12 lines (9 loc) · 182 Bytes

NavigationResult Type Definition

type RESULT_OK = 1;
type RESULT_CANCELLED = 0;

type NavigationResult = {
  code: RESULT_OK | RESULT_CANCELLED;
  payload: Object;
}