linstrom/frontend-src/app/components/note.ts

15 lines
380 B
TypeScript
Raw Normal View History

2024-08-22 17:57:53 +00:00
import Component from '@glimmer/component';
export interface NoteSignature {
// 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 NoteComponent extends Component<NoteSignature> {}