21 lines
428 B
TypeScript
21 lines
428 B
TypeScript
|
import templateOnlyComponent from '@ember/component/template-only';
|
||
|
|
||
|
interface NextButtonSignature {
|
||
|
Args: {
|
||
|
Named: {
|
||
|
isPending?: boolean;
|
||
|
};
|
||
|
};
|
||
|
Element: HTMLButtonElement;
|
||
|
}
|
||
|
|
||
|
const NextButton = templateOnlyComponent<NextButtonSignature>();
|
||
|
|
||
|
export default NextButton;
|
||
|
|
||
|
declare module '@glint/environment-ember-loose/registry' {
|
||
|
export default interface Registry {
|
||
|
NextButton: typeof NextButton;
|
||
|
}
|
||
|
}
|