

| export enum Country { | |
| Afghanistan = 'AF', | |
| AlandIslands = 'AX', | |
| Albania = 'AL', | |
| Algeria = 'DZ', | |
| AmericanSamoa = 'AS', | |
| Andorra = 'AD', | |
| Angola = 'AO', | |
| Anguilla = 'AI', | |
| Antarctica = 'AQ', |
| /** | |
| * Represents every state 2 digit letter code. Derrived from https://www.ssa.gov/international/coc-docs/states.html | |
| * | |
| * @author jordanskomer | |
| */ | |
| export enum State { | |
| Alabama = "AL", | |
| Alaska = "AK", | |
| AmericanSamoa = "AS", | |
| Arizona = "AZ", |
| /** | |
| * A enum mapping for a more descriptive use of HttpStatus Codes. Derived from the docs link below | |
| * | |
| * @docs https://developer.mozilla.org/en-US/docs/Web/HTTP/Status | |
| * @author jordanskomer | |
| */ | |
| export enum HttpStatusCode { | |
| // Information responses | |
| /** | |
| * This interim response indicates that the client should continue the request or ignore the response if the request is already finished. |
| -------- | |
| Don't use ES6 in computed values | |
| -------- | |
| Ex: Won't Work | |
| computed: { | |
| test: () => { | |
| return 'test' | |
| } | |
| } | |
| Ex: Will Work |