@aaronhayes/react-use-hubspot-form
Version:
Embed HubSpot forms into your React components using hooks! Works with Create React App, Gatsby and other platforms.
66 lines (65 loc) • 971 B
TypeScript
/**
* Locales supported by HubSpot forms
*/
export declare enum HubSpotFormLocale {
/**
* English
*/
ENGLISH = "en",
/**
* Danish
*/
DANISH = "da",
/**
* German
*/
GERMAN = "de",
/**
* Spanish (Spain)
*/
SPANISH = "es",
/**
* Spanish (Mexico)
*/
SPANISH_MEXICO = "es-mx",
/**
* Finnish
*/
FINNISH = "fi",
/**
* French
*/
FRENCH = "fr",
/**
* Italian
*/
ITALIAN = "it",
/**
* Japanese
*/
JAPANESE = "ja",
/**
* Dutch
*/
DUTCH = "nl",
/**
* Polish
*/
POLISH = "pl",
/**
* Portuguese
*/
PORTUGUESE = "pt-br",
/**
* Swedish
*/
SWEDISH = "sv",
/**
* Chinese
*/
CHINESE = "zh-cn",
/**
* Chinese (Hong Kong)
*/
CHINESE_HONG_KONG = "zh-hk"
}