Skip to main content
Version: v1

ISerializedValue Interface

Signature

export interface ISerializedValue

Properties

Property Type Description
type string A type annotation to help indicate how the value serializes.
value string | undefined String representation of the value.

Property Details

type

A type annotation to help indicate how the value serializes.

Signature
type: string;

Type: string

value

String representation of the value.

Signature
value: string | undefined;

Type: string | undefined