vuetify-loader icon indicating copy to clipboard operation
vuetify-loader copied to clipboard

Support custom `autoImport` matchers

Open KaelWD opened this issue 4 years ago • 0 comments

type Kind = 'component' | 'directive'
type Replace = { symbol: string, from: string, as?: string }

/**
 * true | null: fall back to the default matcher
 * false: ignore
 * Replace: import from the specified module
 */
(source: string, importer: string, kind: Kind, isVuetify: boolean) => boolean | null | Replace

KaelWD avatar Aug 31 '21 15:08 KaelWD