Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1x 9x | /** * Interface for objects that can be converted to a string. */ export interface IStringConvertible { /** * Gets the string representation of the object. * @returns The string representation of the object. */ toString(): string; } /** * Checks if the object is an {@link IStringConvertible}. * @param obj The object to check. * @returns Whether the object is an {@link IStringConvertible}. */ export function isIStringConvertible(obj: unknown): obj is IStringConvertible { return ( obj != null && typeof obj === 'object' && typeof (obj as IStringConvertible).toString === 'function' ); } |