/** * An object that can be converted into a string. */ export interface Stringfiable { /** Returns a string representation of the object. */ toString(): string; }