weasel API - v0.8.0
    Preparing search index...

    Interface GestureArgSpec

    interface GestureArgSpec {
        default?: string;
        name: string;
        values: readonly string[] | "free";
    }
    Index

    Properties

    Properties

    default?: string

    Default value when a route omits the arg slot. Must be in values unless values === 'free'. Optional: no default means routes that omit the arg slot match every value (only legal for 'free' args).

    name: string

    Display name for the arg in inspector chips (direction, key, fingers).

    values: readonly string[] | "free"

    Acceptable values. 'free' means any string (e.g. key names).