mStar
c919cc8c67
Formatters for username belong to account, not to note New helper for transforming a markdown text to html
14 lines
419 B
TypeScript
14 lines
419 B
TypeScript
import Component from '@glimmer/component';
|
|
|
|
export interface NoteFormatterMisskeySignature {
|
|
// 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 NoteFormatterMisskey extends Component<NoteFormatterMisskeySignature> {}
|