1# @ohos.accessibility.GesturePath (Gesture Path) 2 3The **GesturePath** module provides APIs for creating gesture path information required for an accessibility application to inject gestures. 4 5> **NOTE** 6> 7> The initial APIs of this module are supported since API version 9. Newly added APIs will be marked with a superscript to indicate their earliest API version. 8 9## Modules to Import 10 11```ts 12import GesturePath from '@ohos.accessibility.GesturePath'; 13``` 14 15## GesturePath 16 17Defines a gesture path. 18 19**System capability**: SystemCapability.BarrierFree.Accessibility.Core 20 21### Attributes 22 23| Name | Type | Readable | Writable | Description | 24| ------------ | ---------------------------------------- | ---- | ---- | ------ | 25| points | Array<[GesturePoint](js-apis-accessibility-GesturePoint.md#gesturepoint)> | Yes | Yes | Gesture touch point. | 26| durationTime | number | Yes | Yes | Total gesture duration, in milliseconds.| 27 28### constructor 29 30constructor(durationTime: number); 31 32Constructor used to create a **GesturePath** object. 33 34**System capability**: SystemCapability.BarrierFree.Accessibility.Core 35 36**Parameters** 37 38| Name| Type| Mandatory| Description| 39| -------- | -------- | -------- | -------- | 40| durationTime | number | Yes| Total gesture duration, in milliseconds.| 41 42**Example** 43 44```ts 45import GesturePath from '@ohos.accessibility.GesturePath'; 46 47let gesturePath = new GesturePath.GesturePath(20); 48``` 49