this is just an alias for string, but it's here just to create a distinction between regular strings and dot-paths.
string
dot-path
const my_obj = { hello: ["world", { za: "warudo", toki: "wa tomare" }], yare: "yare daze" }, dotpath_to_the_warudo: DotPath = "hello.1.za", dotpath_to_yare_daze: DotPath = "yare" Copy
const my_obj = { hello: ["world", { za: "warudo", toki: "wa tomare" }], yare: "yare daze" }, dotpath_to_the_warudo: DotPath = "hello.1.za", dotpath_to_yare_daze: DotPath = "yare"
this is just an alias for
string
, but it's here just to create a distinction between regular strings anddot-path
s.