Skip to content

Commit 9fd8f87

Browse files
committed
Fixes #198 Update ctypes type
1 parent 736727d commit 9fd8f87

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)