2024-10-05 20:30:09 +02:00
|
|
|
import type { BuildContext } from "./shared/buildContext";
|
2024-06-08 14:02:07 +02:00
|
|
|
import { generateKcGenTs } from "./shared/generateKcGenTs";
|
|
|
|
|
2024-10-05 20:30:09 +02:00
|
|
|
export async function command(params: { buildContext: BuildContext }) {
|
|
|
|
const { buildContext } = params;
|
2024-06-08 14:02:07 +02:00
|
|
|
|
2024-06-09 09:15:16 +02:00
|
|
|
await generateKcGenTs({ buildContext });
|
2024-06-08 14:02:07 +02:00
|
|
|
}
|