n-link/desktop/src/vite-env.d.ts
Your Name c38b99d7c8 feat(ui): restyle DeviceSelect with Popover, Icon, and Slate tokens
Also add a `declare module "feather-icons"` ambient shim in
desktop/src/vite-env.d.ts: Icon.vue (Task 6) imports the untyped
feather-icons package, and DeviceSelect is the first production
component to pull Icon.vue into vue-tsc's reachable graph, which
surfaced a pre-existing missing type declaration that broke
`npm run build`.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-07-27 20:26:48 -04:00

10 lines
222 B
TypeScript

/// <reference types="vite/client" />
declare module "*.vue" {
import type { DefineComponent } from "vue";
const component: DefineComponent<{}, {}, any>;
export default component;
}
declare module "feather-icons";