File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ S3method(print,api_grid_local)
4040S3method(print,api_plot)
4141S3method(print,kaleidoScope)
4242S3method(print,plotly_data)
43+ S3method(process,api_image)
44+ S3method(process,api_plot)
45+ S3method(process,default)
4346S3method(to_basic,GeomAbline)
4447S3method(to_basic,GeomAlluvium)
4548S3method(to_basic,GeomAnnotationMap)
Original file line number Diff line number Diff line change @@ -6,14 +6,17 @@ process <- function(resp) {
66 UseMethod(" process" )
77}
88
9+ # ' @export
910process.default <- function (resp ) {
1011 json_content(relay_error(resp ))
1112}
1213
14+ # ' @export
1315process.api_plot <- function (resp ) {
1416 json_content(relay_error(resp ))
1517}
1618
19+ # ' @export
1720process.api_image <- function (resp ) {
1821 relay_error(resp )
1922 type <- resp [[" headers" ]][[" content-type" ]]
You can’t perform that action at this time.
0 commit comments