Files
discord.js/packages/rest/__tests__/util.ts
Suneet Tipirneni 0af9bc841f fix(ci): ci error (#7454)
Co-authored-by: Almeida <almeidx@pm.me>
2022-02-13 13:37:41 +01:00

15 lines
299 B
TypeScript

import { DefaultRestOptions } from '../src';
export function genPath(path: string) {
return `/api/v${DefaultRestOptions.version}${path}`;
}
export function jsonHeaders(headers: Record<string, string> = {}) {
return {
headers: {
'content-type': 'application/json',
...headers,
},
};
}