refactor: maintain backwards compat of export

Signed-off-by: Timothy Deakin <cftad@protonmail.com>
This commit is contained in:
Timothy Deakin
2024-03-29 14:39:11 +00:00
parent 302b283862
commit 340cbdb8af
2 changed files with 2 additions and 0 deletions
@@ -14,6 +14,7 @@ import { SignInResolverFactory } from '@backstage/plugin-auth-node';
// @public (undocumented)
const authModuleAwsAlbProvider: () => BackendFeature;
export { authModuleAwsAlbProvider };
export default authModuleAwsAlbProvider;
// @public (undocumented)
@@ -21,6 +21,7 @@
*/
export { awsAlbAuthenticator } from './authenticator';
export { authModuleAwsAlbProvider } from './module';
export { authModuleAwsAlbProvider as default } from './module';
export { awsAlbSignInResolvers } from './resolvers';
export { type AwsAlbResult } from './types';