(ctx context.Context, o *options.Options, args []string)
| 76 | } |
| 77 | |
| 78 | func (p *Parser) applyResizingTypeOption(ctx context.Context, o *options.Options, args []string) error { |
| 79 | return parseFromMap(ctx, p, o, keys.ResizingType, processing.ResizeTypes, args...) |
| 80 | } |
| 81 | |
| 82 | func (p *Parser) applyResizeOption(ctx context.Context, o *options.Options, args []string) error { |
| 83 | if err := p.ensureMaxArgs(ctx, "resize", args, 8); err != nil { |
no test coverage detected