
Perl::Dist::WiX::Types - Public types used in Perl::Dist::WiX.

This document describes Perl::Dist::WiX::Types version 1.500001.

use Perl::Dist::WiX::Types qw( ExistingDirectory ExistingFile TemplateObj );

This module exists to provide Moose types that Perl::Dist::WiX and subclasses can use.
It may be updated or replaced at any time.

has bar => (
is => 'ro',
isa => ExistingDirectory,
#...
);
has bar => (
is => 'ro',
isa => ExistingFile,
#...
);
has bar => (
is => 'ro',
isa => TemplateObj,
#...
);

No support is available for this class.

Curtis Jewell <csjewell@cpan.org>

Copyright 2009 - 2011 Curtis Jewell.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this distribution.