refactor: localize internal implementation types (#101731)

This commit is contained in:
Vincent Koc
2026-07-07 07:41:04 -07:00
committed by GitHub
parent c8d95da14c
commit fdc7892a6e
38 changed files with 47 additions and 49 deletions

View File

@@ -28,7 +28,7 @@ type ModelsStatusCommandModule = typeof import("../../commands/models/list.statu
type TasksJsonCommandModule = typeof import("../../commands/tasks-json.js");
/** Typed parsed route definition that binds one parser to its runner. */
export type RoutedCommandDefinition<TParse extends RouteArgParser<unknown>> = {
type RoutedCommandDefinition<TParse extends RouteArgParser<unknown>> = {
parseArgs: TParse;
runParsedArgs: (args: ParsedRouteArgs<TParse>) => Promise<void>;
};