This repository has been archived on 2023-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
gitops-tbrnt/monitoring/vendor/github.com/grafana/grafonnet-lib/grafonnet/text.libsonnet

22 lines
444 B
Plaintext

{
new(
title='',
span=null,
mode='markdown',
content='',
transparent=null,
description=null,
datasource=null,
)::
{
[if transparent != null then 'transparent']: transparent,
title: title,
[if span != null then 'span']: span,
type: 'text',
mode: mode,
content: content,
[if description != null then 'description']: description,
datasource: datasource,
},
}