mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-04 02:34:52 +00:00
25 lines
749 B
TypeScript
25 lines
749 B
TypeScript
// Auto-generated class wrapper
|
|
import { loadFilesFromReport } from './functions/load-files-from-report'
|
|
import { runCommand } from './functions/run-command'
|
|
import { main } from './functions/main'
|
|
|
|
/**
|
|
* OrchestrateRefactorUtils - Class wrapper for 3 functions
|
|
*
|
|
* This is a convenience wrapper. Prefer importing individual functions.
|
|
*/
|
|
export class OrchestrateRefactorUtils {
|
|
static async loadFilesFromReport(...args: Parameters<typeof loadFilesFromReport>) {
|
|
return await loadFilesFromReport(...args)
|
|
}
|
|
|
|
static async runCommand(...args: Parameters<typeof runCommand>) {
|
|
return await runCommand(...args)
|
|
}
|
|
|
|
static async main(...args: Parameters<typeof main>) {
|
|
return await main(...args)
|
|
}
|
|
|
|
}
|