migrating to typescript

This commit is contained in:
Anatoly 2018-08-16 01:37:13 +03:00
parent 1f9975b85e
commit 4c1f33d138

View file

@ -216,12 +216,8 @@ export class TestSchemaProcessor {
/**
* Provides a blob for a sake of testing.
*
* @param {Conversion} conversion
*
* @returns {Buffer}
*/
getTestBlob(conversion) {
public getTestBlob(conversion: Conversion): Buffer {
return Buffer.from('Automated tests development is in progress.', conversion._encoding);
}