A layer style binding. Mirrors honua_studio_set_layer_style's argument shape (a flat styleRef string binding) plus an optional inline style object for runtimes that carry a style document rather than a reference.

interface SetLayerStyleArgs {
    dryRun?: boolean;
    layerId: string;
    style?: Readonly<Record<string, unknown>>;
    styleRef?: string;
}

Hierarchy (view full)

Properties

dryRun?: boolean
layerId: string
style?: Readonly<Record<string, unknown>>
styleRef?: string