chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,47 +1,47 @@
import type { Handler } from '../../handler'
import type { Handler } from "../../handler"
import {
messageExampleComplete6,
messageExampleComplete7,
messageExampleComplete8,
messageExampleComplete9
} from '../../messages/message'
messageExampleComplete9,
} from "../../messages/message"
export const getMessagesUploadsImageHandler: Handler = {
method: 'GET',
method: "GET",
url: messageExampleComplete6.value as `/${string}`,
response: {
statusCode: 200,
isFile: true,
body: ['image.png']
}
body: ["image.png"],
},
}
export const getMessagesUploadsAudioHandler: Handler = {
method: 'GET',
method: "GET",
url: messageExampleComplete7.value as `/${string}`,
response: {
statusCode: 200,
isFile: true,
body: ['audio.mp3']
}
body: ["audio.mp3"],
},
}
export const getMessagesUploadsVideoHandler: Handler = {
method: 'GET',
method: "GET",
url: messageExampleComplete8.value as `/${string}`,
response: {
statusCode: 200,
isFile: true,
body: ['video.mp4']
}
body: ["video.mp4"],
},
}
export const getMessagesUploadsDownloadHandler: Handler = {
method: 'GET',
method: "GET",
url: messageExampleComplete9.value as `/${string}`,
response: {
statusCode: 200,
isFile: true,
body: ['download.zip']
}
body: ["download.zip"],
},
}