-
Notifications
You must be signed in to change notification settings - Fork 26
/
custom-elements.json
41 lines (41 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
41
{
"schemaVersion": "1.0.0",
"readme": "README.md",
"modules": [
{
"kind": "javascript-module",
"path": "dist/elements/index.js",
"declarations": [
{
"kind": "class",
"description": "An open-source, Web Components-based remake of MS Paint using modern web capabilities.",
"name": "App",
"events": [
{
"name": "titlechange",
"description": "The titlechange event fires whenever the document's title changes, for example, when a document is saved with a new name, or a document was opened from the file system.",
"type": {
"title": "String"
}
}
],
"superclass": {
"name": "LitElement"
},
"tagName": "paint-app",
"customElement": true
}
],
"exports": [
{
"kind": "custom-element-definition",
"name": "paint-app",
"declaration": {
"name": "App",
"module": "dist/elements/index.js"
}
}
]
}
]
}