UNPKG

sc4

Version:

A command line utility for automating SimCity 4 modding tasks & modifying savegames

14 lines (13 loc) 513 B
import FileScanner from './file-scanner.js'; import CorePluginIndex, { type PluginIndexOptions as CoreOptions } from './plugin-index.js'; type PluginIndexOptions = CoreOptions & { installation?: string | undefined; plugins?: string | undefined; }; export default class PluginIndex extends CorePluginIndex { installation: string | undefined; plugins: string | undefined; constructor(opts?: PluginIndexOptions); createGlob(pattern: string | string[], cwd: string): FileScanner; } export {};