Properties of a work item form contribution

interface WitContribution {
    contributionId?: string;
    height?: number;
    inputs?: { [key: string]: any };
    showOnDeletedWorkItem?: boolean;
}

Properties

contributionId?: string

The id for the contribution.

height?: number

The height for the contribution.

inputs?: { [key: string]: any }

A dictionary holding key value pairs for contribution inputs.

showOnDeletedWorkItem?: boolean

A value indicating if the contribution should be show on deleted workItem.