/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v22.0.2
src/components-examples/example-module.d.ts
20 строк
678 B
Miles Malerba
Add a zoneless toggle to the dev-app (#28839)
08 апр 2024, 20:07
Не верифицирован
08 апр 2024, 20:07
9cb0761
Код
Авторство
О чём код?
interface LiveExample { /** Title of the example. */ title: string; /** Name of the example component. */ componentName: string; /** Selector to match the component of this example. */ selector: string; /** Name of the primary file of this example. */ primaryFile: string; /** List of files which are part of the example. */ files: string[]; /** Path to the directory containing the example. */ packagePath: string; /** List of additional components which are part of the example. */ additionalComponents: string[]; /** Path from which to import the xample. */ importPath: string; } export const EXAMPLE_COMPONENTS: {[id: string]: LiveExample};