Majuscule pour la première lettre des noms des interfaces.

This commit is contained in:
Fabrice PENHOËT 2021-09-17 18:05:08 +02:00
parent aa2a3414b2
commit af3d7aba54
1 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
// cf. https://www.papaparse.com/docs#results
export interface papaParseDatas
export interface PapaParseDatas
{
[key: string]: string;
}
export interface papaParseErrors
export interface PapaParseErrors
{
type: string;
code: string;
@ -13,7 +13,7 @@ export interface papaParseErrors
row: number;
}
export interface papaParseMeta
export interface PapaParseMeta
{
delimiter?: string;
linebreak?: string;