You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/**
|
|
* 反序列化查询参数
|
|
* @param str 字符串
|
|
*/
|
|
export declare function unserialize(str: string): any;
|
|
export declare function unserialize(str: any): any;
|
|
|
|
declare module './ctor' {
|
|
interface XEUtilsMethods {
|
|
unserialize: typeof unserialize;
|
|
}
|
|
}
|
|
|
|
export default unserialize
|
|
|