ngx-selecto
Version:
An Angular Selecto Component that allows you to select elements in the drag area using the mouse or touch.
10 lines (9 loc) • 468 B
TypeScript
import VanillaSelecto, { SelectoMethods, SelectoOptions } from 'selecto';
import { MethodInterface } from 'framework-utils';
import { NgxSelectoComponent } from './ngx-selecto.component';
import { NgxSelectoEvents } from './types';
export declare class NgxSelectoInterface {
protected selecto: VanillaSelecto;
}
export interface NgxSelectoInterface extends MethodInterface<SelectoMethods, VanillaSelecto, NgxSelectoComponent>, SelectoOptions, NgxSelectoEvents {
}