Fix type declaration issue
This commit is contained in:
		@@ -212,7 +212,7 @@ export function CouplePage(p: {
 | 
			
		||||
  shouldAllowLeaving?: boolean;
 | 
			
		||||
  children?: Member[];
 | 
			
		||||
  onCancel?: () => void;
 | 
			
		||||
  onSave?: (m: Couple) => void;
 | 
			
		||||
  onSave?: (m: Couple) => Promise<void>;
 | 
			
		||||
  onRequestEdit?: () => void;
 | 
			
		||||
  onRequestDelete?: () => void;
 | 
			
		||||
  onForceReload?: () => void;
 | 
			
		||||
 
 | 
			
		||||
@@ -234,7 +234,7 @@ export function MemberPage(p: {
 | 
			
		||||
  siblings?: Member[];
 | 
			
		||||
  couples?: Couple[];
 | 
			
		||||
  onCancel?: () => void;
 | 
			
		||||
  onSave?: (m: Member) => void;
 | 
			
		||||
  onSave?: (m: Member) => Promise<void>;
 | 
			
		||||
  onRequestEdit?: () => void;
 | 
			
		||||
  onRequestDelete?: () => void;
 | 
			
		||||
  onForceReload?: () => void;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user