Type alias CrossOriginSetting

CrossOriginSetting: "" | "anonymous" | "use-credentials"

The cross-origin setting of a source, represented by a value from the following list:
- 'anonymous': CORS requests will have the credentials flag set to 'same-origin'.
- 'use-credentials': CORS requests will have the credentials flag set to 'include'.
- '': Setting the empty string is the same as 'anonymous'

Generated using TypeDoc