UNPKG

siegel

Version:

Web application development ecosystem

10 lines (9 loc) 249 B
/** * Check if both values have the same type * * @param a - Comparable value * @param b - Value to compare with * @returns true if values have the same type */ declare const isSameType: (a: any, b: any) => boolean; export default isSameType;