Truncating text in Apple News Format

I have a component, the text for which I would like to truncate (prevent text wrapping). Here is the component:

{
  role: 'body',
  format: 'html',
  text: 'This is an example with very long text that I do not want to wrap',
  textStyle: {
    fontSize: 30
    lineHeight: 36,
  }
}

Which styles or layout should I apply to prevent this text from wrapping to the next line?