7 lines
85 B
TypeScript
7 lines
85 B
TypeScript
/**
|
|
* @publicApi
|
|
*/
|
|
export type RawBodyRequest<T> = T & {
|
|
rawBody?: Buffer;
|
|
};
|