/** * Available metadata types * * DEFAULT is usually used to indicate a generic Metadata type */ export declare enum MetadataType { DEFAULT = "default", Annotation = "annotation", Colony = "colony", Decision = "decision", Domain = "domain", Misc = "misc" } /** * Current Colony Event Metadata version */ export declare const METADATA_VERSION = 2; /** * The various team colors that the dApp supports */ export declare enum TeamColor { LightPink = 0, Pink = 1, Black = 2, EmeraldGreen = 3, Blue = 4, Yellow = 5, Red = 6, Green = 7, Periwinkle = 8, Gold = 9, Aqua = 10, BlueGrey = 11, Purple = 12, Orange = 13, Magenta = 14, PurpleGrey = 15 }