Skip to content

Commit ffc598e

Browse files
authored
Merge pull request #211 from opensource9ja/fix/update-type
Fixes #198 Update ctypes type
2 parents 736727d + 9fd8f87 commit ffc598e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

danfojs-browser/types/core/frame.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export class DataFrame extends Ndframe {
334334
* Returns the data types in the DataFrame
335335
* @return {Array} list of data types for each column
336336
*/
337-
get ctypes(): any[];
337+
get ctypes(): Series;
338338
/**
339339
* Make plots of Series or DataFrame.
340340
* Uses the Plotly as backend, so supports Plotly's configuration parameters

danfojs-node/types/core/frame.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ export class DataFrame extends Ndframe {
334334
* Returns the data types in the DataFrame
335335
* @return {Array} list of data types for each column
336336
*/
337-
get ctypes(): any[];
337+
get ctypes(): Series;
338338
/**
339339
* Make plots of Series or DataFrame.
340340
* Uses the Plotly as backend, so supports Plotly's configuration parameters

0 commit comments

Comments
 (0)