Passed
Pull Request — main (#343)
by Alejandro
03:59
created

CsvJson.toCSV   A

Complexity

Conditions 1

Size

Total Lines 1
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 1
rs 10
c 0
b 0
f 0
cc 1
1
declare module 'event-source-polyfill' {
2
  export const EventSourcePolyfill: any;
3
}
4
5
declare module 'csvjson' {
6
  export declare class CsvJson {
7
    public toObject<T>(content: string): T[];
8
    public toCSV<T>(data: T[], options: { headers: string }): string;
9
  }
10
}
11
12
declare module '*.png'
13