UNPKG

chrome-devtools-frontend

Version:
17 lines (14 loc) 620 B
// Copyright 2026 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import {skill as accessibilitySkill} from './accessibility.skill.js'; import {skill as networkSkill} from './network.skill.js'; import {skill as performanceSkill} from './performance.skill.js'; import type {Skill, SkillName} from './Skill.js'; import {skill as stylingSkill} from './styling.skill.js'; export const SKILLS: Record<SkillName, Skill> = { styling: stylingSkill, network: networkSkill, accessibility: accessibilitySkill, performance: performanceSkill, };