UNPKG

@syntest/core

Version:

The common core of the SynTest Framework

8 lines 416 B
import { Encoding } from ".."; import { EncodingSampler } from "../search/EncodingSampler"; import { PluginInterface } from "./PluginInterface"; export type SamplerOptions<T extends Encoding> = unknown; export interface SamplerPlugin<T extends Encoding> extends PluginInterface<T> { createSamplerOperator<O extends SamplerOptions<T>>(options: O): EncodingSampler<T>; } //# sourceMappingURL=SamplerPlugin.d.ts.map