Skip to content

Commit

Permalink
feat: pass all TS checks in src file
Browse files Browse the repository at this point in the history
  • Loading branch information
florianstancioiu committed Mar 28, 2024
1 parent 3e67a87 commit 962f3cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/cosmoz-treenode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ export interface ComputePathText
Props,
'ownerTree' | 'ellipsis' | 'valueProperty' | 'pathSeparator'
> {
pathToRender?: string;
path: string;
pathToRender?: (Node | undefined)[];
path: (Node | undefined)[];
}

export const computePathToRender = (
path: string | undefined,
path: (Node | undefined)[],
hideFromRoot: number,
showMaxNodes: number,
) => {
Expand Down

0 comments on commit 962f3cf

Please sign in to comment.