linstrom/frontend-reactive/app/components/note/formatter/linstrom.ts
mStar c7af216ce3 frontend
Start work on formatter for content
2024-10-23 17:02:19 +02:00

14 lines
422 B
TypeScript

import Component from '@glimmer/component';
export interface NoteFormatterLinstromSignature {
// 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 NoteFormatterLinstrom extends Component<NoteFormatterLinstromSignature> {}