There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

MouseX::Types::Mouse - Types shipped with Mouse

SYNOPSIS

package Foo;
use Mouse;
use MouseX::Types::Mouse qw( Int ArrayRef );

has name => (
  is  => 'rw',
  isa => Str;
);

has ids => (
  is  => 'rw',
  isa => ArrayRef[Int],
);

1;

SEE ALSO

MouseX::Types

Mouse::Util::TypeConstraints