linstrom/frontend-reactive/app/components/auth/register-start.ts
2024-10-28 08:36:11 +01:00

14 lines
410 B
TypeScript

import Component from '@glimmer/component';
export interface AuthRegisterStartSignature {
// The arguments accepted by the component
Args: {};
// Any blocks yielded by the component
Blocks: {
default: [];
};
// The element to which `...attributes` is applied in the component template
Element: null;
}
export default class AuthRegisterStart extends Component<AuthRegisterStartSignature> {}