normalify
Version:
Normalize different variable value types - e.g. `"1"` becomes `1`
16 lines • 475 B
TypeScript
/**
* Convert the input from its source type into its actual type
* @param input
*/
export default function normalify(input: any): any;
/**
* Convert the input object and its nested values into their actual types
* @param input
*/
export declare function normalifyObject(input: any): any;
/**
* Convert the input from its source type into its actual type
* @param input
*/
export declare function normalifyString(input: any): any;
//# sourceMappingURL=index.d.ts.map