Skip to main content
type UseListSpendPermissionsReturnType = {
  data:   | SpendPermissionPage
     | undefined;
  error: Error | undefined;
  status: Status;
  refetch: () => void;
};
Return type for the useListSpendPermissions hook.

Properties

PropertyType
data| SpendPermissionPage | undefined
errorError | undefined
statusStatus
refetch() => void