Preview:```ts
export interface SQSRecord {
body: string
}
export interface AWSSQSEvent {
Records: SQSRecord[]
}
export type SQSEvent<
TSchema,
TBase extends AWSSQSEvent = AWSSQSEvent
= Omit<TBase, "Records"> & {
Records: Array<Omit<AWSSQSEvent["Records"], "body">
...```
You can choose specific lines to embed by selecting them before copying the link.