@termun/core - v0.0.0
    Preparing search index...

    Type Alias MenuInputConfigsJson

    type MenuInputConfigsJson = {
        clear?: boolean;
        fastSubmit?: boolean;
        inline?: boolean;
        forbidChars?: string;
        validate?: (value: string) => boolean | string;
        callback?: (
            data: {
                menu: MenuInput;
                value: string;
                language?: string;
                parent?: string;
            },
        ) => Promise<void>;
    }
    Index

    Properties

    clear?: boolean
    fastSubmit?: boolean
    inline?: boolean
    forbidChars?: string

    A string containing characters that should be blocked from input (e.g. " ").

    validate?: (value: string) => boolean | string
    callback?: (
        data: {
            menu: MenuInput;
            value: string;
            language?: string;
            parent?: string;
        },
    ) => Promise<void>