File tree 2 files changed +6
-0
lines changed
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)
40
40
S3method(print,api_plot)
41
41
S3method(print,kaleidoScope)
42
42
S3method(print,plotly_data)
43
+ S3method(process,api_image)
44
+ S3method(process,api_plot)
45
+ S3method(process,default)
43
46
S3method(to_basic,GeomAbline)
44
47
S3method(to_basic,GeomAlluvium)
45
48
S3method(to_basic,GeomAnnotationMap)
Original file line number Diff line number Diff line change @@ -6,14 +6,17 @@ process <- function(resp) {
6
6
UseMethod(" process" )
7
7
}
8
8
9
+ # ' @export
9
10
process.default <- function (resp ) {
10
11
json_content(relay_error(resp ))
11
12
}
12
13
14
+ # ' @export
13
15
process.api_plot <- function (resp ) {
14
16
json_content(relay_error(resp ))
15
17
}
16
18
19
+ # ' @export
17
20
process.api_image <- function (resp ) {
18
21
relay_error(resp )
19
22
type <- resp [[" headers" ]][[" content-type" ]]
You can’t perform that action at this time.
0 commit comments