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

13 lines
168 B
Plaintext

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