UNPKG

@sinedied/mini-scraper

Version:

Artwork scraper for handheld emulators.

14 lines (13 loc) 765 B
import { type Options } from '../options.js'; import { type ArtType } from '../art.js'; export declare function useSeparateArtworks(_options: Options): Promise<boolean>; export declare function getArtPath(filePath: string, _machine: string, _type?: ArtType): Promise<string>; export declare function exportArtwork(art1Url: string | undefined, art2Url: string | undefined, artPath: string, options: Options): Promise<boolean>; export declare function cleanupArtwork(targetPath: string, _romFolders: string[], _options: Options): Promise<void>; declare const nextui: { useSeparateArtworks: typeof useSeparateArtworks; getArtPath: typeof getArtPath; exportArtwork: typeof exportArtwork; cleanupArtwork: typeof cleanupArtwork; }; export default nextui;