7 lines
265 B
TypeScript
7 lines
265 B
TypeScript
|
import { WebhookPayloadWithRepository } from './context';
|
||
|
/**
|
||
|
* Get the body of the relevant comment, review, issue or pull request
|
||
|
* @param payload - Webhook payload
|
||
|
*/
|
||
|
export declare function getBody(payload: WebhookPayloadWithRepository): string | undefined;
|