Fix lint and test fixtures
BIN
packages/tests/fixtures/avatar-resized-120x120.webp
vendored
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 316 B |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 6.5 KiB |
BIN
packages/tests/fixtures/avatar-resized-48x48.webp
vendored
Before Width: | Height: | Size: 953 B After Width: | Height: | Size: 186 B |
BIN
packages/tests/fixtures/avatar-resized-600x600.webp
vendored
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 1.6 KiB |
|
@ -31,10 +31,9 @@ type CreateOptions = {
|
||||||
priority: number
|
priority: number
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// dprint-ignore
|
||||||
// eslint-disable-next-line max-len
|
// eslint-disable-next-line max-len
|
||||||
export class VideoStudioTranscodingJobHandler
|
export class VideoStudioTranscodingJobHandler extends AbstractJobHandler<CreateOptions, RunnerJobUpdatePayload, VideoStudioTranscodingSuccess> {
|
||||||
extends AbstractJobHandler<CreateOptions, RunnerJobUpdatePayload, VideoStudioTranscodingSuccess>
|
|
||||||
{
|
|
||||||
async create (options: CreateOptions) {
|
async create (options: CreateOptions) {
|
||||||
const { video, priority, tasks } = options
|
const { video, priority, tasks } = options
|
||||||
|
|
||||||
|
|