You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version of typedoc we are using no longer has the minimal theme as it is very out of date and buggy.
I've installed a new theme which is similar to minimal but offers some extra features such as search.
I've also fixed some broken internal linking we had in the api docs
Co-authored-by: Jake Champion <[email protected]>
Copy file name to clipboardExpand all lines: sdk/js-compute/index.d.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -166,7 +166,7 @@ export declare class Dictionary {
166
166
*
167
167
* Can be retrieved for the incoming request's client IP address using the
168
168
* {@linkcode ClientInfo#geo} accessor, and for arbitrary addresses using
169
-
* {@linkcodefastly.getGeolocationForIpAddress}.
169
+
* {@linkcodeFastly.getGeolocationForIpAddress}.
170
170
*/
171
171
exportdeclareinterfaceGeolocation{
172
172
/**
@@ -515,7 +515,7 @@ export declare class TextDecoder {
515
515
* Simple interface for logging to
516
516
* [third party logging providers](https://developer.fastly.com/learning/integrations/logging)
517
517
*
518
-
* Instances of Logger for specific endpoints can be created using {@linkcodefastly.getLogger}.
518
+
* Instances of Logger for specific endpoints can be created using {@linkcodeFastly.getLogger}.
519
519
*/
520
520
exportdeclareinterfaceLogger{
521
521
/**
@@ -891,7 +891,7 @@ type ReadableStreamDefaultReadResult<T> = ReadableStreamDefaultReadValueResult<T
891
891
exportinterfaceReadableWritablePair<R=any,W=any>{
892
892
readable: ReadableStream<R>;
893
893
/**
894
-
* Provides a convenient, chainable way of piping this readable stream through a transform stream (or any other { writable, readable } pair). It simply pipes the stream into the writable side of the supplied pair, and returns the readable side for further use.
894
+
* Provides a convenient, chainable way of piping this readable stream through a transform stream (or any other \{ writable, readable \} pair). It simply pipes the stream into the writable side of the supplied pair, and returns the readable side for further use.
895
895
*
896
896
* Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader.
0 commit comments