You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that here, in the generated typings:
// Generated by dts-bundle v0.7.3// Dependencies for this module:// ../@/typesdeclare module 'whdt-scraper'{import{Dump,Wiki,Version,DumpOptions,WikiOptions,VersionOptions}from'@/types';export*from'@/types';/** * Fetches the dumps of a wiki of the wikimedia history dump * @param version The version of the wiki (yyyy-mm or 'latest') * @param wiki The wiki whose dumps will be returned (e.g. 'itwiki') * @param options The options of the function * @returns The fetched dumps */exportfunctionfetchDumps(version: string,wiki: string,options?: DumpOptions): Promise<Dump[]>;/** * Fetches the wikies of a version of the wikimedia history dump * @param version The version of the wiki (yyyy-mm or 'latest') * @param options The options of the function * @returns The fetched wikies */exportfunctionfetchWikies(version: string,options?: WikiOptions): Promise<Wiki[]>;/** * Fetches the versions of the wikimedia history dump * @param options The options of the function * @returns The fetched versions */exportfunctionfetchVersions(options?: VersionOptions): Promise<Version[]>;/** * Fetches the latest version the wikimedia history dump * @param options The options of the function * @returns The latest version */exportfunctionfetchLatestVersion(options?: VersionOptions): Promise<Version|null>;}
Only tha ones of the main file are included, the other are skipped with a // ../@/types.
The text was updated successfully, but these errors were encountered:
Hi, this is my
webpack.config.js
:The problem is that here, in the generated typings:
Only tha ones of the main file are included, the other are skipped with a
// ../@/types
.The text was updated successfully, but these errors were encountered: