@botonic/plugin-contentful
Version:
Botonic Plugin Contentful is one of the **[available](https://github.com/hubtype/botonic/tree/master/packages)** plugins for Botonic. **[Contentful](http://www.contentful.com)** is a CMS (Content Management System) which manages contents of a great variet
12 lines (11 loc) • 425 B
TypeScript
export declare class SpaceManager {
readonly spaceId: string;
readonly environment: string;
readonly accessToken: string;
constructor(spaceId: string, environment: string, accessToken: string);
/**
* Creates a locale. Useful for locales which don't exist in contentful.com
* (eg en_CH)
*/
createLocale(longName: string, code: string, fallbackCode: string | undefined): Promise<void>;
}