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

ScriptParameterKeyValue

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

A parameter for a studio component script, in the form of a key-value pair.

interface ScriptParameterKeyValue {
key?: string | null;
value?: string | null;
}

§Properties

§
key?: string | null
[src]

A script parameter key.

§
value?: string | null
[src]

A script parameter value.