TypeScript/tests/baselines/reference/stripInternal1.types
2015-04-15 16:44:20 -07:00

12 lines
168 B
Text

=== tests/cases/compiler/stripInternal1.ts ===
class C {
>C : C
foo(): void { }
>foo : () => void
// @internal
bar(): void { }
>bar : () => void
}