We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zillow/auto-mobile'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
GestureOptions.ts•597 B
/**
* Options for configuring gestures
*/
export interface GestureOptions {
duration?: number; // Total duration of gesture in ms
easing?: "linear" | "decelerate" | "accelerate" | "accelerateDecelerate";
fingers?: number; // Number of touch points (default: 1)
randomize?: boolean; // Add small random variations to path
lift?: boolean; // Whether to lift finger at end (default: true)
pressure?: number; // Touch pressure (0.0-1.0)
includeSystemInsets?: boolean; // Whether the gesture should be bounded by system insets
}