-
Notifications
You must be signed in to change notification settings - Fork 25
/
custom-elements.json
40 lines (40 loc) · 1.11 KB
/
custom-elements.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"schemaVersion": "1.0.0",
"readme": "",
"modules": [
{
"kind": "javascript-module",
"path": "src/custom-element.ts",
"declarations": [
{
"kind": "class",
"description": "An example Custom Element. This documentation ends up in the\nREADME so describe how this elements works here.\n\nYou can event add examples on the element is used with Markdown.\n\n```\n<custom-element></custom-element>\n```",
"name": "CustomElementElement",
"superclass": {
"name": "HTMLElement"
},
"tagName": "custom-element",
"customElement": true
}
],
"exports": [
{
"kind": "js",
"name": "default",
"declaration": {
"name": "CustomElementElement",
"module": "src/custom-element.ts"
}
},
{
"kind": "custom-element-definition",
"name": "custom-element",
"declaration": {
"name": "CustomElementElement",
"module": "src/custom-element.ts"
}
}
]
}
]
}