UNPKG

@sinedied/mini-scraper

Version:

Artwork scraper for handheld emulators.

16 lines (15 loc) 907 B
import { type Options } from '../options.js'; import { 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>; export declare function prepareMachine(folderPath: string, _machine: string, options: Options): Promise<void>; declare const muos: { useSeparateArtworks: typeof useSeparateArtworks; getArtPath: typeof getArtPath; prepareMachine: typeof prepareMachine; exportArtwork: typeof exportArtwork; cleanupArtwork: typeof cleanupArtwork; }; export default muos;