mirror of
https://github.com/lights0123/n-link.git
synced 2026-08-07 18:23:28 +00:00
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>
10 lines
222 B
TypeScript
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";
|