Interface representing information about a value.

This interface defines the structure for specifying details about a value, including its name, file location, type, and comments.

interface ValueInfo {
    comments?: string[];
    file: string;
    isDefault?: boolean;
    name: string;
    type: Type;
}

Properties

comments?: string[]
file: string
isDefault?: boolean
name: string
type: Type