ember-assembly
Version:
A collection of beautiful UI components built by Goods
13 lines (10 loc) • 331 B
text/typescript
import Component from '@ember/component';
// @ts-ignore: Ignore import of compiled template
import template from './template';
export default class UiTableHead extends Component {
layout = template;
tagName: string = '';
isLoading?: boolean = false;
hasFixedHeader?: boolean = false;
onSort?: Function | null = null;
}