blob: 736a5ea83094eb1fe7e676d5b82deaaf974dab65 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @interface
*/
export class QueryParamHandler {
/**
* @param {string} value
*/
handleQueryParam(value) {
}
}
/* Legacy exported object */
self.Common = self.Common || {};
Common = Common || {};
/**
* @interface
*/
Common.QueryParamHandler = QueryParamHandler;