ixfx
    Preparing search index...

    Type Alias BindUpdateOpts<V>

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

    Type Parameters

    • V

    Type declaration

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