HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode/one-time-popup/node_modules/@bufbuild/protobuf/dist/cjs/equals.d.ts
import type { MessageShape } from "./types.js";
import { type DescMessage } from "./descriptors.js";
import type { Registry } from "./registry.js";
interface EqualsOptions {
    /**
     * A registry to look up extensions, and messages packed in Any.
     *
     * @private Experimental API, does not follow semantic versioning.
     */
    registry: Registry;
    /**
     * Unpack google.protobuf.Any before comparing.
     * If a type is not in the registry, comparison falls back to comparing the
     * fields of Any.
     *
     * @private Experimental API, does not follow semantic versioning.
     */
    unpackAny?: boolean;
    /**
     * Consider extensions when comparing.
     *
     * @private Experimental API, does not follow semantic versioning.
     */
    extensions?: boolean;
    /**
     * Consider unknown fields when comparing.
     * The registry is used to distinguish between extensions, and unknown fields
     * caused by schema changes.
     *
     * @private Experimental API, does not follow semantic versioning.
     */
    unknown?: boolean;
}
/**
 * Compare two messages of the same type.
 *
 * Note that this function disregards extensions and unknown fields, and that
 * NaN is not equal NaN, following the IEEE standard.
 */
export declare function equals<Desc extends DescMessage>(schema: Desc, a: MessageShape<Desc>, b: MessageShape<Desc>, options?: EqualsOptions): boolean;
export {};