11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import BitbucketBackend from './implementation';
|
|
import API from './API';
|
|
import AuthenticationPage from './AuthenticationPage';
|
|
|
|
export const DecapCmsBackendBitbucket = {
|
|
BitbucketBackend,
|
|
API,
|
|
AuthenticationPage,
|
|
};
|
|
export { BitbucketBackend, API, AuthenticationPage };
|