This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const CACHE_STALE_AT_HEADER = 'x-edge-cache-stale-at'; | |
export const CACHE_STATUS_HEADER = 'x-edge-cache-status'; | |
export const CACHE_CONTROL_HEADER = 'Cache-Control'; | |
export const CLIENT_CACHE_CONTROL_HEADER = 'x-client-cache-control'; | |
export const ORIGIN_CACHE_CONTROL_HEADER = 'x-edge-origin-cache-control'; | |
enum CacheStatus { | |
HIT = 'HIT', | |
MISS = 'MISS', | |
REVALIDATING = 'REVALIDATING', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Typescript types for the GeoJSON RFC7946 specification. This is not fully RFC-compliant due to lack of support for | |
* ranged number data types. | |
* | |
* See https://tools.ietf.org/html/rfc7946 | |
*/ | |
export declare namespace GeoJSON { | |
/** | |
* Inside this document, the term "geometry type" refers to seven case-sensitive strings: "Point", "MultiPoint", | |
* "LineString", "MultiLineString", "Polygon", "MultiPolygon", and "GeometryCollection". |