mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
///<reference path='references.ts' />
|
|
|
|
module TypeScript.Services {
|
|
export interface ILanguageServicesDiagnostics {
|
|
log(content: string): void;
|
|
}
|
|
}
|