react-url-query
Version:
A library for managing state through query parameters in the URL in React. Works well with or without Redux and React Router.
18 lines (16 loc) • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var UrlQueryParamTypes = {
number: 'number',
string: 'string',
object: 'object',
array: 'array',
json: 'json',
date: 'date',
boolean: 'boolean',
numericObject: 'numericObject',
numericArray: 'numericArray'
};
exports.default = UrlQueryParamTypes;