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.
14 lines
238 B
14 lines
238 B
5 months ago
|
/**
|
||
|
* 序列化查询参数
|
||
|
* @param query 查询参数
|
||
|
*/
|
||
|
export declare function serialize(query: any): string;
|
||
|
|
||
|
declare module './ctor' {
|
||
|
interface XEUtilsMethods {
|
||
|
serialize: typeof serialize;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default serialize
|