@gmb/bitmark-cli
Version:
Bitmark command line interface
12 lines • 376 B
TypeScript
declare class StringUtils {
/**
* Determines whether the given object is a string.
*
* @param obj - The object to check.
* @returns `true` if the object is a string, `false` otherwise.
*/
isString(obj: unknown): boolean;
}
declare const stringUtils: StringUtils;
export { stringUtils as StringUtils };
//# sourceMappingURL=StringUtils.d.ts.map