5 lines
112 B
TypeScript
5 lines
112 B
TypeScript
|
interface DPath {
|
||
|
label: string;
|
||
|
value: string; // TODO determine method for more precise typing for path
|
||
|
}
|