import type { IComponentOptions } from 'angular'; import { module } from 'angular'; const footerComponent: IComponentOptions = { bindings: { action: '&', isValid: '&', cancel: '&', account: '=?', verification: '=?', }, template: ` `, controller: () => {}, }; export const AWS_FOOTER_COMPONENT = 'spinnaker.amazon.footer'; module(AWS_FOOTER_COMPONENT, []).component('awsFooter', footerComponent);