interface UpdateStyleType {
    path: {
        value:
            | undefined
            | null
            | string
            | number
            | boolean
            | Record<string, unknown>;
    };
}

Properties

Properties

path: {
    value:
        | undefined
        | null
        | string
        | number
        | boolean
        | Record<string, unknown>;
}