Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

vipera-npm-registry / motif-web-admin-core   js

Repository URL to install this package:

Version: 0.3.1 

/ lib / sections / MemoryLeakTest / components / b / foo-b-section-component.d.ts

import { OnInit, OnDestroy } from '@angular/core';
import { NGXLogger } from 'web-console-core';
import { CdkDragDrop } from '@angular/cdk/drag-drop';
export declare class Student {
    name: String;
}
export declare class FooBSectionComponent implements OnInit, OnDestroy {
    private logger;
    students: Student[];
    students2: Student[];
    constructor(logger: NGXLogger);
    drop(event: CdkDragDrop<string[]>): void;
    ngOnInit(): void;
    ngOnDestroy(): void;
}