TypeScript/tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithAccessibilityModifiers.ts
2014-09-23 11:22:38 -07:00

6 lines
No EOL
93 B
TypeScript

// Errors
interface Foo {
public a: any;
private b: any;
protected c: any;
}