forked from external-repos/squoosh
* Basic rotate & flip * Flipping resize when orientation changes * Hack around critters issue. * Removing generator. Huge perf boost. * Stable positioning * Creating input processors * Allowing rotation to be changed * Reverting old change * Adding tooltips * No more flip * Removing need for wrapper element boxing * Adding comment * Addressing nits * Bleh
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
export interface RotateOptions {
|
|
rotate: 0 | 90 | 180 | 270;
|
|
}
|
|
|
|
export const defaultOptions: RotateOptions = { rotate: 0 };
|