From 23b60dc1975db38c280d8a123aff97544d1673e0 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:34:21 +0800 Subject: [PATCH] TODO#139890 FAQ 常見問題 1-文案調整 --- PAMapp/node_modules/@types/lodash/common/collection.d.ts | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PAMapp/node_modules/@types/lodash/common/collection.d.ts b/PAMapp/node_modules/@types/lodash/common/collection.d.ts index e5307f7..6659074 100755 --- a/PAMapp/node_modules/@types/lodash/common/collection.d.ts +++ b/PAMapp/node_modules/@types/lodash/common/collection.d.ts @@ -946,53 +946,53 @@ * @param iteratee The function invoked per iteration. * @return Returns the composed aggregate object. */ - groupBy<T>(collection: List<T> | null | undefined, iteratee?: ValueIteratee<T>): Dictionary<[T, ...T[]]>; + groupBy<T>(collection: List<T> | null | undefined, iteratee?: ValueIteratee<T>): Dictionary<T[]>; /** * @see _.groupBy */ - groupBy<T extends object>(collection: T | null | undefined, iteratee?: ValueIteratee<T[keyof T]>): Dictionary<[T[keyof T], ...Array<T[keyof T]>]>; + groupBy<T extends object>(collection: T | null | undefined, iteratee?: ValueIteratee<T[keyof T]>): Dictionary<Array<T[keyof T]>>; } interface String { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<string>): Object<Dictionary<[string, ...string[]]>>; + groupBy(iteratee?: ValueIteratee<string>): Object<Dictionary<string[]>>; } interface Collection<T> { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<T>): Object<Dictionary<[T, ...T[]]>>; + groupBy(iteratee?: ValueIteratee<T>): Object<Dictionary<T[]>>; } interface Object<T> { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<T[keyof T]>): Object<Dictionary<[T[keyof T], ...Array<T[keyof T]>]>>; + groupBy(iteratee?: ValueIteratee<T[keyof T]>): Object<Dictionary<Array<T[keyof T]>>>; } interface StringChain { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<string>): ObjectChain<Dictionary<[string, ...string[]]>>; + groupBy(iteratee?: ValueIteratee<string>): ObjectChain<Dictionary<string[]>>; } interface StringNullableChain { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<string>): ObjectChain<Dictionary<[string, ...string[]]>>; + groupBy(iteratee?: ValueIteratee<string>): ObjectChain<Dictionary<string[]>>; } interface CollectionChain<T> { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<T>): ObjectChain<Dictionary<[T, ...T[]]>>; + groupBy(iteratee?: ValueIteratee<T>): ObjectChain<Dictionary<T[]>>; } interface ObjectChain<T> { /** * @see _.groupBy */ - groupBy(iteratee?: ValueIteratee<T[keyof T]>): ObjectChain<Dictionary<[T[keyof T], ...Array<T[keyof T]>]>>; + groupBy(iteratee?: ValueIteratee<T[keyof T]>): ObjectChain<Dictionary<Array<T[keyof T]>>>; } interface LoDashStatic { /** -- Gitblit v1.8.0