itype.ts 225 B

123456789101112
  1. // eslint-disable-next-line @typescript-eslint/interface-name-prefix
  2. export interface IType {
  3. value: string | undefined;
  4. ord: number | undefined;
  5. stringInfo (): object[];
  6. isCompatible (another: IType): boolean;
  7. }