import { VsCodeHtmlDocs, VsCodeCssDocs } from './types.ts'; import { ApiCustomElementDeclaration } from '@arcgis/api-extractor/apiJson'; /** * Originally based on * https://github.com/break-stuff/cem-tools/tree/main/packages/vs-code-integration * * Moved in house mainly because of * https://github.com/prettier/prettier-synchronized/issues/22 * That issue affects all debuggers, not just VS Code, and since the cause is * in the global scope, it affects the program even if generateWebTypes wasn't * called. * * But also there are several other quality issues with the original plugin. */ export declare const generateVsCodeHtmlCustomData: (components: ApiCustomElementDeclaration[]) => VsCodeHtmlDocs; export declare const generateVsCodeCssCustomData: (components: ApiCustomElementDeclaration[]) => VsCodeCssDocs;