init commit
This commit is contained in:
20
remotion/node_modules/@remotion/webcodecs/dist/resizing/mode.d.ts
generated
vendored
Normal file
20
remotion/node_modules/@remotion/webcodecs/dist/resizing/mode.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
export type ResizeOperation = {
|
||||
mode: 'width';
|
||||
width: number;
|
||||
} | {
|
||||
mode: 'height';
|
||||
height: number;
|
||||
} | {
|
||||
mode: 'max-height';
|
||||
maxHeight: number;
|
||||
} | {
|
||||
mode: 'max-width';
|
||||
maxWidth: number;
|
||||
} | {
|
||||
mode: 'max-height-width';
|
||||
maxHeight: number;
|
||||
maxWidth: number;
|
||||
} | {
|
||||
mode: 'scale';
|
||||
scale: number;
|
||||
};
|
||||
Reference in New Issue
Block a user