stf-angular-select
Version:
Custom reusable select for angular with wide posibilities
18 lines (17 loc) • 472 B
TypeScript
/// <reference types="angular" />
import * as angular from 'angular';
import IScope = angular.IScope;
export interface IOptionScope extends IScope {
selectValue: Function;
ngValue: any;
value: any;
modelVaule: any;
}
export declare class StfSelectOptionDirective {
transclude: any;
restrict: any;
template: string;
scope: any;
link(scope: IOptionScope, element: any, attrs: any): void;
static Factory(): StfSelectOptionDirective;
}