UNPKG

generate-test-ids

Version:
5 lines (4 loc) 297 B
declare type TestIdsObj = Record<string, string>; export declare type Assoc = (prop: string, value: string, obj: TestIdsObj) => TestIdsObj; export declare type Reduce = (reducer: (acc: TestIdsObj, val: string) => TestIdsObj, initialValue: TestIdsObj) => (list: string[]) => TestIdsObj; export {};