chrome-devtools-frontend
Version:
Chrome DevTools UI
22 lines (16 loc) • 608 B
text/typescript
// Copyright 2023 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.
import type * as Protocol from '../../../../generated/protocol.js';
export class RuleSetView {
readonly ruleSetId: Protocol.Preload.RuleSetId|null;
constructor(ruleSetId: Protocol.Preload.RuleSetId|null) {
this.ruleSetId = ruleSetId;
}
}
export class AttemptViewWithFilter {
readonly ruleSetId: Protocol.Preload.RuleSetId|null;
constructor(ruleSetId: Protocol.Preload.RuleSetId|null) {
this.ruleSetId = ruleSetId;
}
}