The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package Poke::Types;
BEGIN {
$Poke::Types::VERSION = '1.101040';
}
use strict;
use MooseX::Types -declare =>
[qw/
JobConfiguration
JobConfigurations
PokeConfig
/];
subtype PokeConfig,
as HashRef,
where { $_->keys->length >= 5 && [qw/Poke Logger Schema Web/]->all eq $_->keys->any };
subtype JobConfiguration,
as Tuple[Str, HashRef];
subtype JobConfigurations,
as ArrayRef[JobConfiguration];
1;
__END__
=pod
=head1 NAME
Poke::Types
=head1 VERSION
version 1.101040
=head1 AUTHOR
Nicholas Perez <nperez@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Infinity Interactive.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut