Add PixelInterpolateMethod type

This commit is contained in:
5ohue
2024-05-11 13:06:52 +03:00
parent 48e0452e74
commit 1914b95f7b
3 changed files with 51 additions and 1 deletions

View File

@ -3,6 +3,7 @@ mod composite_operator;
mod dither_method;
mod filter_type;
mod gravity_type;
mod pixel_interpolate_method;
mod metric_type;
mod resource_type;
@ -11,5 +12,6 @@ pub use self::composite_operator::CompositeOperator;
pub use self::dither_method::DitherMethod;
pub use self::filter_type::FilterType;
pub use self::gravity_type::GravityType;
pub use self::pixel_interpolate_method::PixelInterpolateMethod;
pub use self::metric_type::MetricType;
pub use self::resource_type::ResourceType;