From 5737f9269bc573ae2cde1ba7d7314253f3295dc7 Mon Sep 17 00:00:00 2001 From: Tom Ballinger Date: Mon, 16 Sep 2024 16:00:25 -0700 Subject: [PATCH] Remove reference to args (#29893) GitOrigin-RevId: 8817744d6df1e30c1e7a1e83e4bbed4e382c955a --- src/server/components/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/server/components/index.ts b/src/server/components/index.ts index f3ca76d..39896b8 100644 --- a/src/server/components/index.ts +++ b/src/server/components/index.ts @@ -70,7 +70,7 @@ export type ComponentDefinition = { /** * Install a component with the given definition in this component definition. * - * Takes a component definition, and an optional name. + * Takes a component definition and an optional name. * * For editor tooling this method expects a {@link ComponentDefinition} * but at runtime the object that is imported will be a {@link ImportedComponentDefinition} @@ -101,7 +101,7 @@ export type AppDefinition = { /** * Install a component with the given definition in this component definition. * - * Takes a component definition, an optional name, and the args it requires. + * Takes a component definition and an optional name. * * For editor tooling this method expects a {@link ComponentDefinition} * but at runtime the object that is imported will be a {@link ImportedComponentDefinition}