this is my project structure:
app ->
Core ->
Client.ts
ClientCollection.ts
Client.ts:
namespace Core {
export class Client { }
}
ClientCollection.ts:
namespace Core {
export class ClientCollection {
public client: Client;
}
}
I want to define a variable in ClientCollection
from the kind of Client.
I use the /// <reference path = "Client.ts" />
but get me this error: Cannot find name 'Client'
How can I do it?