diff --git a/src/creators/logical-group.ts b/src/creators/logical-group.ts index b080c7a..22a7b8e 100644 --- a/src/creators/logical-group.ts +++ b/src/creators/logical-group.ts @@ -3,13 +3,13 @@ * with specified properties and formatting rules. * @param {string} groupName - The `groupName` parameter is a string that * represents the name of the logical group being created. - * @param {any[]} properties - The `properties` parameter in the + * @param {string[]} properties - The `properties` parameter in the * `createLogicalGroup` function is an array that contains the properties * or items that you want to group together under a logical group * with the specified `groupName`. These properties can be of any type or * structure, depending on your specific use case. */ -export default async (groupName: string, properties: any[]) => ({ +export default async (groupName: string, properties: string[]) => ({ groupName, properties, emptyLineBefore: 'always',