kkamkou/gelfjs

View on GitHub
gelfjs/JsonConvertible.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Licensed under the MIT License.
 *
 * @author  Kanstantsin Kamkou (2ka.by)
 * @link    https://github.com/kkamkou/gelfjs
 * @license https://opensource.org/licenses/MIT
 */

export default interface JsonConvertible {
  toJSON(): unknown;
}