linstrom/frontend-src/app/components/note.ts
2024-08-22 19:57:53 +02:00

14 lines
380 B
TypeScript

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> {}