itype.ts 143 B

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