Skip to content
Snippets Groups Projects
Commit 4fa04f0f authored by Sebastian Bittrich's avatar Sebastian Bittrich
Browse files

changes comment style

parent fe7e04f6
No related branches found
No related tags found
No related merge requests found
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
......@@ -99,13 +99,17 @@ export namespace CifWriter {
}
}
// defines the information needed to encode certain fields: category and column name as well as encoding tag, precision is optional and identifies float columns
// TODO would be nice to infer strategy and precision if needed
/**
* Defines the information needed to encode certain fields: category and column name as well as encoding tag, precision is optional and identifies float columns.
*/
export interface EncodingStrategyHint {
categoryName: string,
columnName: string,
// TODO would be nice to infer strategy and precision if needed
encoding: EncodingType,
// number of decimal places to keep - must be specified to float columns
/**
* number of decimal places to keep - must be specified to float columns
*/
precision?: number
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment