ixfx
    Preparing search index...

    Type Alias BindUpdateOpts<V>

    type BindUpdateOpts<V> = {
        binds: Record<
            string,
            DomBindValueTarget & { transform?: (value: any) => string },
        >;
        initial: (v: V, el: HTMLElement) => void;
    }

    Type Parameters

    • V
    Index

    Properties

    Properties

    binds: Record<
        string,
        DomBindValueTarget & { transform?: (value: any) => string },
    >
    initial: (v: V, el: HTMLElement) => void