Skip to content

Commit

Permalink
Merge branch 'Nxys-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNorthMemory committed Jan 9, 2022
2 parents 8f604bc + 8463ad4 commit 2615205
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,30 @@ export namespace WechatpayAxiosPlugin {
* @returns {string} - The content for `Rsa.verify`
*/
static response(timestamp: string | number, nonce: string, body?: string): string;
/**
* Joined this inputs by for `Line Feed`(LF) char.
*
* @param {string[]} pieces - The string(s) joined by line feed.
*
* @returns {string} - The joined string.
*/
static joinedByLineFeed(pieces: string[]): string;
/**
* Sorts an Object by key.
*
* @param {object} thing - The input object.
*
* @returns {object} - The sorted object.
*/
static ksort(thing: object): object;
/**
* Like `queryString` does but without the `sign` and `empty value` entities.
*
* @param {object} thing - The input object.
*
* @returns {string} - The sorted object.
*/
static queryStringLike(thing: object): string;
}

/**
Expand Down

0 comments on commit 2615205

Please sign in to comment.