Fix typo in triangle

This commit is contained in:
ergunsh
2021-09-03 15:03:28 +03:00
parent 68ce8f420d
commit c4bc369c6b

View File

@@ -32,7 +32,7 @@ interface ResizeWithAspectParams {
export interface ResizeOptions {
width: number;
height: number;
method: 'triange' | 'catrom' | 'mitchell' | 'lanczos3';
method: 'triangle' | 'catrom' | 'mitchell' | 'lanczos3';
premultiply: boolean;
linearRGB: boolean;
}