RAGS - v1.10.0
    Preparing search index...

    Type Alias Props<T>

    Props: Omit<
        Pick<
            T,
            {
                [K in keyof T]: T[K] extends (...args: any[]) => any
                    ? never
                    : OnlyString<K>
            }[keyof T],
        >,
        "g_type_instance",
    >

    Extracts non-method, non-internal property keys from a GObject type.

    Useful for constraining property bindings to valid GObject properties.

    Type Parameters

    • T

      The GObject type to extract properties from