import { StringHack, Globals } from "./index"; /** * TheĀ **`offset-distance`** CSS property specifies a position along an `offset-path`. * * **Initial value**: `0` * * | Chrome | Firefox | Safari | Edge | IE | * | :--------------------: | :-----: | :----: | :--: | :-: | * | **55** | n/a | n/a | n/a | n/a | * | 46 _(motion-distance)_ | | | | | * * @see https://developer.mozilla.org/docs/Web/CSS/offset-distance */ export type OffsetDistanceProperty = Globals | TLength | StringHack;