rubick/src/renderer/shims-vue.d.ts
2021-12-07 11:19:08 +08:00

19 lines
381 B
TypeScript

/* eslint-disable */
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module 'main' {
export function main (): any
}
declare const __static: string
declare module 'lodash.throttle'
interface Window {
setSubInput: ({ placeholder }: { placeholder: string }) => void;
}