mirror of
https://github.com/Astatin3/OldChatApp.git
synced 2026-06-09 00:28:00 -06:00
Add files via upload
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* It serializes passed object into string
|
||||
* The numeric values must be finite.
|
||||
* Any other input values will be coerced to empty strings.
|
||||
*
|
||||
* @param obj The object to serialize into a URL query string
|
||||
* @param sep The substring used to delimit key and value pairs in the query string
|
||||
* @param eq The substring used to delimit keys and values in the query string
|
||||
* @param name
|
||||
*/
|
||||
export type encodeFuncType = (
|
||||
obj?: Record<any, unknown>,
|
||||
sep?: string,
|
||||
eq?: string,
|
||||
name?: any
|
||||
) => string;
|
||||
|
||||
export default encodeFuncType;
|
||||
Reference in New Issue
Block a user