1 | // Copyright 2013 Lovell Fuller and others.
|
2 | // SPDX-License-Identifier: Apache-2.0
|
3 |
|
4 | ;
|
5 |
|
6 | const Sharp = require('./constructor');
|
7 | require('./input')(Sharp);
|
8 | require('./resize')(Sharp);
|
9 | require('./composite')(Sharp);
|
10 | require('./operation')(Sharp);
|
11 | require('./colour')(Sharp);
|
12 | require('./channel')(Sharp);
|
13 | require('./output')(Sharp);
|
14 | require('./utility')(Sharp);
|
15 |
|
16 | module.exports = Sharp;
|