File: Colourable.pm

package info (click to toggle)
libtangence-perl 0.33-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 580 kB
  • sloc: perl: 6,076; makefile: 15
file content (15 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package t::Colourable;

use v5.26;
use warnings;

use Tangence::Constants;

our %PROPS = (
   colour => {
      dim  => DIM_SCALAR,
      type => 'str',
   },
);

1;