/** These are third-party libraries used in Kitten that do not have static type information in their module or in the centralised @types package. To remove type warnings at author time, they are declared here and added to `typeRoots` in jsconfig.js. (Longer term, it would be nice to contribute type information for these libraries with the eventual goal of removing this file from the project.) */ // JSDB declare module '@small-tech/jsdb' // Middleware and helpers without bundled or @types declarations. declare module 'cors' declare module 'hsts' declare module 'type-is' declare module 'cookie' declare module 'uid-safe' declare module 'tcp-port-used' declare module 'serve-static' declare module 'connect-static-file' declare module 'tail-file' declare module 'sanitize-html' declare module 'simply-beautiful' declare module 'prismjs' declare module 'js-beautify' declare module 'path-complete-extname' declare module '@small-tech/attribute-parser' // Markdown-it plugins (used in src/lib/html.js) declare module 'markdown-it-footnote' declare module 'markdown-it-image-figures' declare module 'markdown-it-ins' declare module 'markdown-it-bracketed-spans' declare module 'markdown-it-mark' declare module 'markdown-it-sub' declare module 'markdown-it-sup' declare module 'markdown-it-task-checkbox'