/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v22.1.0
tools/example-module/example-module.template
26 строк
950 B
Kristiyan Kostadinov
docs: convert examples to standalone (#27137)
22 май 2023, 16:44
Не верифицирован
22 май 2023, 16:44
748f177
Код
Авторство
О чём код?
/** ****************************************************************************** * DO NOT MANUALLY EDIT THIS FILE. THIS FILE IS AUTOMATICALLY GENERATED. ****************************************************************************** */ export 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} = ${exampleComponents};