File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change 44*/
55import { VariableID , ElementBase } from './common.js' ;
66
7- /**
8- * CSV data in markdown fence: ```csv variableId
9- */
107export interface CsvElement extends ElementBase {
118 type : 'csv' ;
129 variableId : VariableID ;
1310 content : string | string [ ] | string [ ] [ ] ;
1411}
1512
16- /**
17- * TSV data in markdown fence: ```tsv variableId
18- */
1913export interface TsvElement extends ElementBase {
2014 type : 'tsv' ;
2115 variableId : VariableID ;
2216 content : string | string [ ] | string [ ] [ ] ;
2317}
2418
25- /**
26- * Custom delimiter-separated data in markdown fence: ```dsv delimiter:| variableId
27- */
2819export interface DsvElement extends ElementBase {
2920 type : 'dsv' ;
3021 variableId : VariableID ;
3122 delimiter : string ;
3223 content : string | string [ ] | string [ ] [ ] ;
3324}
3425
35- /**
36- * JSON data with type preservation in markdown fence: ```json value variableId
37- */
3826export interface JsonValueElement extends ElementBase {
3927 type : 'json' ;
4028 variableId : VariableID ;
4129 content : object | object [ ] ;
4230}
4331
44- /**
45- * YAML data with type preservation in markdown fence: ```yaml value variableId
46- */
4732export interface YamlValueElement extends ElementBase {
4833 type : 'yaml' ;
4934 variableId : VariableID ;
You can’t perform that action at this time.
0 commit comments