export interface IType {

  value?: String;

  ord?: number;

  stringInfo (): any[];

  isCompatible (another: IType): boolean;

}