itype.ts 131 B

1234567891011
  1. export interface IType {
  2. value?: String;
  3. ord?: number;
  4. stringInfo (): any[];
  5. isCompatible (another: IType): boolean;
  6. }