jxa-types
    Preparing search index...

    Interface NSDictionary<K, V>

    interface NSDictionary<K = NSString, V = any> {
        js: object;
        getProperty(key: string): any;
        isNil(): boolean;
        objectForKey<R = V>(s: K): R;
        setProperty(key: string, value: any): any;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    js: object

    Methods

    • Parameters

      • key: string

      Returns any

    • Returns boolean

    • Parameters

      • key: string
      • value: any

      Returns any