/** * @license * Copyright Google Inc. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import {MeasureValues} from './measure_values'; /** * A reporter reports measure values and the valid sample. */ export abstract class Reporter { reportMeasureValues(values: MeasureValues): Promise { throw new Error('NYI'); } reportSample(completeSample: MeasureValues[], validSample: MeasureValues[]): Promise { throw new Error('NYI'); } }