We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { Arguments, Argv } from 'yargs'; declare module 'yargs' { }
output
declare module 'yargs2/core' { /** * Created by user on 2018/6/1/001. */ import { Argv } from 'yargs'; declare module 'yargs2/index//yargs' { } }
should is module 'yargs' not module 'yargs2/index//yargs'
module 'yargs'
module 'yargs2/index//yargs'
The text was updated successfully, but these errors were encountered:
Do you know if there's any fork that fixes this?
Sorry, something went wrong.
I have a file that has
declare module 'vue/types/vue' { export interface Vue { $wp: WPAPI; } }
and it puts it in (I flagged the problem text)
declare module '@lj/vue-wp/src/plugin' { import WPAPI from "wpapi"; import { PluginObject } from 'vue'; **declare** module 'vue/types/vue' { interface Vue { $wp: WPAPI; } } const _default: PluginObject<WPAPI.WPAPIOptions>; export default _default; }
No branches or pull requests
output
should is
module 'yargs'
notmodule 'yargs2/index//yargs'
The text was updated successfully, but these errors were encountered: