tslint-clean-code
Version:
TSLint rules for enforcing Clean Code
22 lines (21 loc) • 433 B
TypeScript
declare namespace protected {
}
declare namespace SampleProtected1 {
}
declare namespace SampleProtected2 {
}
declare class SampleProtected3 {
private protected;
}
declare class SampleProtected4 {
private var;
protected: any;
}
declare class SampleProtected5 {
protected(): void;
}
interface SampleProtected6 {
protected: any;
}
declare function methodProtected(protected: any): void;
declare var protected: any;