2023-11-04 14:54:30 +01:00
|
|
|
import templateOnlyComponent from '@ember/component/template-only';
|
|
|
|
import type { BestOption } from './poll-evaluation-summary';
|
|
|
|
|
|
|
|
interface PollEvaluationSummaryOptionSignature {
|
|
|
|
Args: {
|
|
|
|
Named: {
|
|
|
|
evaluationBestOption: BestOption;
|
|
|
|
isFindADate: boolean;
|
2023-11-04 17:21:35 +01:00
|
|
|
timeZone: string | undefined;
|
2023-11-04 14:54:30 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
Element: HTMLButtonElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
const PollEvaluationSummaryOption =
|
|
|
|
templateOnlyComponent<PollEvaluationSummaryOptionSignature>();
|
|
|
|
|
|
|
|
export default PollEvaluationSummaryOption;
|
|
|
|
|
|
|
|
declare module '@glint/environment-ember-loose/registry' {
|
|
|
|
export default interface Registry {
|
|
|
|
PollEvaluationSummaryOption: typeof PollEvaluationSummaryOption;
|
|
|
|
}
|
|
|
|
}
|