Public/Get-ModuleDetails.ps1

function Get-ModuleDetails {
  # .SYNOPSIS
  # Displays detailed information about a specified module.
  # .DESCRIPTION
  # A longer description of the function, its purpose, common use cases, etc.
  # .NOTES
  # Information or caveats about the function e.g. 'This function is not supported in Linux'
  # .LINK
  # Show-ModuleInfo: Provides a more user-friendly view of module details.
  # .EXAMPLE
  # Get-ModuleDetails cliHelper.env
  [CmdletBinding()]
  param (

  )

  begin {

  }

  process {

  }

  end {

  }
}