1/* 2 * Copyright (C) 2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15export interface Args { 16 id: number; 17 startNS: number; 18 endNS: number; 19 recordStartNS: number; 20 recordEndNS: number; 21 cpu: number; 22 width: number; 23 maxId: number; 24 minId: number; 25 filterId: number; 26 drawType: number; 27 ipid: number; 28 pid: number; 29 itid: number; 30 tid: number; 31 trackId: number; 32 clockName: string; 33 sqlType: string; 34 type: number | string; 35 typeArr: Array<number>; 36 all: boolean; 37 eventName: string; 38 name: string; 39 oneDayTime: number; 40 moduleId: number; 41 windowId: number; 42 isPin: number; 43 scratchId: number; 44} 45