tslint-clean-code
Version:
TSLint rules for enforcing Clean Code
21 lines (20 loc) • 454 B
TypeScript
declare namespace WrapperConstructor {
}
declare namespace SampleConstructor1 {
}
declare namespace SampleConstructor2 {
}
declare class SampleConstructor4 {
private var;
constructor: any;
}
declare class SampleConstructor5 {
constructor();
method(constructor: any): void;
private func;
}
interface SampleConstructor6 {
constructor: any;
}
declare function methodConstructor(constructor: any): void;
declare var constructor: any;