File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,14 @@ async function walkDirectory(dir: URL): Promise<URL[]> {
67
67
return results ;
68
68
}
69
69
70
- const types : Record < string , string > = {
71
- property : "properties" ,
72
- method : "methods" ,
73
- "landing-page" : "ignore" ,
74
- interface : "interfaces" ,
75
- overview : "ignore" ,
76
- event : "events" ,
70
+ const paths : Record < string , string [ ] > = {
71
+ "web-api-instance-property" : [ "properties" , "property" ] ,
72
+ "web-api-static-property" : [ "properties" , "property" ] ,
73
+ "web-api-instance-method" : [ "methods" , "method" ] ,
74
+ "web-api-static-method" : [ "methods" , "method" ] ,
75
+ "web-api-interface" : [ ] ,
76
+ "webgl-extension" : [ ] ,
77
+ "webgl-extension-method" : [ "methods" , "method" ] ,
77
78
} ;
78
79
79
80
function generateTypes ( content : string ) : string [ ] | undefined {
You can’t perform that action at this time.
0 commit comments