Files
SponsorBlockServer/test/utils/utils.ts

11 lines
257 B
TypeScript

/**
* Duplicated from Mocha types. TypeScript doesn't infer that type by itself for some reason.
*/
export type Done = (err?: any) => void;
export const postJSON = {
method: "POST",
headers: {
"Content-Type": "application/json",
},
};