Protons
    Preparing search index...

    Interface Writer

    interface Writer {
        len: number;
        bool(value: boolean): this;
        bytes(value: Uint8Array): this;
        double(value: number): this;
        finish(): Uint8Array;
        fixed32(value: number): this;
        fixed64(value: bigint): this;
        fixed64Number(value: number): this;
        fixed64String(value: string): this;
        float(value: number): this;
        fork(): this;
        int32(value: number): this;
        int64(value: bigint): this;
        int64Number(value: number): this;
        int64String(value: string): this;
        ldelim(): this;
        reset(): this;
        sfixed32(value: number): this;
        sfixed64(value: bigint): this;
        sfixed64Number(value: number): this;
        sfixed64String(value: string): this;
        sint32(value: number): this;
        sint64(value: bigint): this;
        sint64Number(value: number): this;
        sint64String(value: string): this;
        string(value: string): this;
        uint32(value: number): this;
        uint64(value: bigint): this;
        uint64Number(value: number): this;
        uint64String(value: string): this;
    }
    Index

    Properties

    len: number

    Current length

    Methods