kkamkou/gelfjs

View on GitHub
gelfjs/GfcFilter.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
 */

import GfCollection from "./GfCollection";

export default interface GfcFilter {
  accept(collection: GfCollection): boolean;
}