import { SupportedTypes } from '../types.js'; /** * Converts value to proper type * * @param value Value to try to convert * @param type A type * @returns Value converted to type. */ export default function convertToProperType(value: any, type: SupportedTypes): any;