1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
=== tests/cases/compiler/interfaceDeclaration4.ts ===
// Import this module when test harness supports external modules. Also remove the internal module below.
// import Foo = require("interfaceDeclaration5")
module Foo {
>Foo : typeof Foo
export interface I1 { item: string; }
>item : string
export class C1 { }
>C1 : C1
}
class C1 implements Foo.I1 {
>C1 : C1
>Foo : typeof Foo
public item:string;
>item : string
}
// Allowed
interface I2 extends Foo.I1 {
>Foo : typeof Foo
item:string;
>item : string
}
// Negative Case
interface I3 extends Foo.I1 {
>Foo : typeof Foo
item:number;
>item : number
}
interface I4 extends Foo.I1 {
>Foo : typeof Foo
token:string;
>token : string
}
// Err - not implemented item
class C2 implements I4 {
>C2 : C2
public token: string;
>token : string
}
interface I5 extends Foo { }
// Negative case
interface I6 extends Foo.C1 { }
>Foo : typeof Foo
class C3 implements Foo.I1 { }
>C3 : C3
>Foo : typeof Foo
// Negative case
interface Foo.I1 { }
>I1 : any
|