We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9685a63 + 0ca4212 commit 563695bCopy full SHA for 563695b
src/danfojs-base/core/generic.ts
@@ -445,6 +445,7 @@ export default class NDframe implements NDframeInterface {
445
* sep: "+"
446
* })
447
*/
448
+ toCSV(options?: any): string
449
toCSV(options?: any): string | void {
450
throw new Error("`toCSV` function is deprecated. Use `toCSV` function directly instead. e.g. `dfd.toCSV(df)`")
451
}
@@ -468,6 +469,7 @@ export default class NDframe implements NDframeInterface {
468
469
470
* ```
471
472
+ toJSON(options?: any): object
473
toJSON(options?: any): object | void {
474
throw new Error("`toJSON` function is deprecated. Use `toJSON` function directly instead. e.g. `dfd.toJSON(df, { format: 'row' })`")
475
0 commit comments