import { Component } from 'san' export default class MyComponent extends Component { static filters = { real: function (this: MyComponent, str: string) { return this.data.get('real') + str } } static template = '
{{title|real}}
' }