@nextcloud/dialogs
    Preparing search index...

    Interface ObjectDirective<T, V>

    interface ObjectDirective<T = any, V = any> {
        bind?: DirectiveHook<T, any, V>;
        componentUpdated?: DirectiveHook<T, any, V>;
        inserted?: DirectiveHook<T, any, V>;
        unbind?: DirectiveHook<T, any, V>;
        update?: DirectiveHook<T, any, V>;
    }

    Type Parameters

    • T = any
    • V = any
    Index

    Properties

    bind?: DirectiveHook<T, any, V>
    componentUpdated?: DirectiveHook<T, any, V>
    inserted?: DirectiveHook<T, any, V>
    unbind?: DirectiveHook<T, any, V>
    update?: DirectiveHook<T, any, V>