Home Reference Source
import RenderData from 'formatron/src/renderers/renderData.js'
public class | source

RenderData

Struct that contains all information required for rendering.

Constructor Summary

Public Constructor
public

constructor(dataType: DataType, dataValue: object, options: object)

Creates a new render data struct.

Member Summary

Public Members
public
public
public

Method Summary

Public Methods
public

addOptions(newOptions: object): RenderData

Creates a new render data struct with the passed in options added.

Public Constructors

public constructor(dataType: DataType, dataValue: object, options: object) source

Creates a new render data struct.

Params:

NameTypeAttributeDescription
dataType DataType

A description of the data value.

dataValue object

The data value to render.

options object

Arbitrary parameters to pass to the renderer.

Public Members

public dataType: DataType source

public dataValue: object source

public options: object source

Public Methods

public addOptions(newOptions: object): RenderData source

Creates a new render data struct with the passed in options added.

Params:

NameTypeAttributeDescription
newOptions object

Arbitrary parameters to pass to the renderer.

Return:

RenderData

A new render data object.