Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

NameValuePair

import type { NameValuePair } from "https://aws-api.deno.dev/v0.4/services/privatenetworks.ts?docs=full";

Information about a name/value pair.

interface NameValuePair {
name: string;
value?: string | null;
}

§Properties

§
name: string
[src]

The name of the pair.

§
value?: string | null
[src]

The value of the pair.