[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-08-07 11:39:39 +00:00
committed by GitHub
parent 01ce84d8ee
commit b296db9a33
34 changed files with 189 additions and 266 deletions

View File

@@ -1,5 +1,9 @@
export interface TreeData {
parentById: Record<string, string>;
childrenById: Record<string, string[]>;
parentById: Record<string, string>;
childrenById: Record<string, string[]>;
}
export declare const findCommonAncestor: (id1: string, id2: string, { parentById }: TreeData) => string;
export declare const findCommonAncestor: (
id1: string,
id2: string,
{ parentById }: TreeData
) => string;