mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
20 lines
457 B
JavaScript
20 lines
457 B
JavaScript
// Global
|
|
export const LOCALSTORAGE_DEBOUNCE_MILLIS = 1000;
|
|
export const LOCALSTORAGE_KEY = 'insomnia';
|
|
|
|
// HTTP Methods
|
|
export const METHOD_GET = 'GET';
|
|
export const METHOD_PUT = 'PUT';
|
|
export const METHOD_POST = 'POST';
|
|
export const METHOD_DELETE = 'DELETE';
|
|
export const METHOD_OPTIONS = 'OPTIONS';
|
|
export const METHOD_HEAD = 'HEAD';
|
|
export const METHODS = [
|
|
METHOD_GET,
|
|
METHOD_PUT,
|
|
METHOD_POST,
|
|
METHOD_DELETE,
|
|
METHOD_OPTIONS,
|
|
METHOD_HEAD
|
|
];
|