10 lines
280 B
TypeScript
10 lines
280 B
TypeScript
import { Component, Output, Input } from 'angular-ts-decorators';
|
|
|
|
|
|
@Component({
|
|
selector: 'linearWorkflow',
|
|
templateUrl: '/static/js/directives/ui/linear-workflow/linear-workflow.component.html'
|
|
})
|
|
export class LinearWorkflowComponent implements ng.IComponentController {
|
|
|
|
}
|