import * as yargs from 'yargs'; import { generateDefineFuncMigration, generateVscodeSqlSnippets, } from './commands'; // eslint-disable-next-line @typescript-eslint/no-explicit-any export const cliExtension = (): yargs.CommandModule[] => [ generateVscodeSqlSnippets, generateDefineFuncMigration, ];