mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-26 06:44:58 +00:00
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// Auto-generated class wrapper
|
|
import { getFunctionExtension } from './functions/get-function-extension'
|
|
import { extractFunctions } from './functions/extract-functions'
|
|
import { extractDependencies } from './functions/extract-dependencies'
|
|
import { generateFunctionFile } from './functions/generate-function-file'
|
|
import { generateModule } from './functions/generate-module'
|
|
import { generateHeaderFile } from './functions/generate-header-file'
|
|
|
|
/**
|
|
* CppRefactorUtils - Class wrapper for 6 functions
|
|
*
|
|
* This is a convenience wrapper. Prefer importing individual functions.
|
|
*/
|
|
export class CppRefactorUtils {
|
|
static getFunctionExtension(...args: any[]) {
|
|
return getFunctionExtension(...args as any)
|
|
}
|
|
|
|
static async extractFunctions(...args: any[]) {
|
|
return await extractFunctions(...args as any)
|
|
}
|
|
|
|
static async extractDependencies(...args: any[]) {
|
|
return await extractDependencies(...args as any)
|
|
}
|
|
|
|
static generateFunctionFile(...args: any[]) {
|
|
return generateFunctionFile(...args as any)
|
|
}
|
|
|
|
static async generateModule(...args: any[]) {
|
|
return await generateModule(...args as any)
|
|
}
|
|
|
|
static generateHeaderFile(...args: any[]) {
|
|
return generateHeaderFile(...args as any)
|
|
}
|
|
|
|
}
|