/** * Standard interface for a token. */ export interface Token> { decimals: number; equals: (other: T) => boolean; /** * String representation of this token. */ toString(): string; /** * The symbol of the token. */ get symbol(): string; }