@@ -109,7 +109,7 @@ export const extractInterface = async (
109109 exportName : string ,
110110 declaration : InterfaceDeclaration ,
111111) : Promise < ExtractedInterface > => {
112- const interfaceId = id ( containerName , "interface" , exportName ) ;
112+ const interfaceId = id ( containerName , "+ interface" , exportName ) ;
113113 return {
114114 kind : "interface" ,
115115 id : interfaceId ,
@@ -145,7 +145,7 @@ const extractInterfaceProperties = async (
145145 const name = declaration . getName ( ) ;
146146 properties . push ( {
147147 kind : "interface-property" as const ,
148- id : id ( interfaceId , "property" , name ) ,
148+ id : id ( interfaceId , "+ property" , name ) ,
149149 name,
150150 docs : docs ( declaration ) ,
151151 file : sourceFilePath ( declaration ) ,
@@ -179,7 +179,7 @@ const extractInterfaceMethods = async (
179179 seenMethods . add ( name ) ;
180180 methods . push ( {
181181 kind : "interface-method" as const ,
182- id : id ( interfaceId , "method" , name ) ,
182+ id : id ( interfaceId , "+ method" , name ) ,
183183 name,
184184 docs : docs ( declaration ) ,
185185 file : sourceFilePath ( declaration ) ,
@@ -297,7 +297,7 @@ const extractInterfaceGetAccessors = async (
297297 const name = declaration . getName ( ) ;
298298 getAccessors . push ( {
299299 kind : "interface-get-accessor" as const ,
300- id : id ( interfaceId , "get-accessor" , name ) ,
300+ id : id ( interfaceId , "+ get-accessor" , name ) ,
301301 name,
302302 docs : docs ( declaration ) ,
303303 file : sourceFilePath ( declaration ) ,
@@ -327,7 +327,7 @@ const extractInterfaceSetAccessors = async (
327327 const name = declaration . getName ( ) ;
328328 setAccessors . push ( {
329329 kind : "interface-set-accessor" as const ,
330- id : id ( interfaceId , "set-accessor" , name ) ,
330+ id : id ( interfaceId , "+ set-accessor" , name ) ,
331331 name,
332332 docs : docs ( declaration ) ,
333333 file : sourceFilePath ( declaration ) ,
0 commit comments