UNPKG

chrome-devtools-frontend

Version:
21 lines (18 loc) 786 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 sourcesSkill} from './sources.skill.js'; import {skill as storageSkill} from './storage.skill.js'; import {skill as stylingSkill} from './styling.skill.js'; export const SKILLS: Record<SkillName, Skill> = { styling: stylingSkill, network: networkSkill, accessibility: accessibilitySkill, performance: performanceSkill, storage: storageSkill, sources: sourcesSkill, };