/** @module type/type.ts */ /** * Returns the string value of the primative object given. * @param obj object to inspect primative type of * @sig a -> str * @example * type( 'test' ) * // 'String' */ export declare const type: (obj: any) => "Array" | "Map" | "WeakMap" | "Set" | "Object" | "Number" | "Boolean" | "String" | "Null" | "RegExp" | "Function" | "Undefined"; export default type;