chrome-devtools-frontend
Version:
Chrome DevTools UI
17 lines (14 loc) • 620 B
text/typescript
// 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,
};