File tree 2 files changed +12
-0
lines changed
tests/baselines/reference/api
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1960,6 +1960,12 @@ declare namespace ts {
1960
1960
path: string;
1961
1961
name?: string;
1962
1962
}
1963
+ /**
1964
+ * Subset of properties from SourceFile that are used in multiple utility functions
1965
+ */
1966
+ export interface SourceFileLike {
1967
+ readonly text: string;
1968
+ }
1963
1969
export interface SourceFile extends Declaration {
1964
1970
readonly kind: SyntaxKind.SourceFile;
1965
1971
readonly statements: NodeArray<Statement>;
Original file line number Diff line number Diff line change @@ -1960,6 +1960,12 @@ declare namespace ts {
1960
1960
path : string ;
1961
1961
name ?: string ;
1962
1962
}
1963
+ /**
1964
+ * Subset of properties from SourceFile that are used in multiple utility functions
1965
+ */
1966
+ export interface SourceFileLike {
1967
+ readonly text : string ;
1968
+ }
1963
1969
export interface SourceFile extends Declaration {
1964
1970
readonly kind : SyntaxKind . SourceFile ;
1965
1971
readonly statements : NodeArray < Statement > ;
You can’t perform that action at this time.
0 commit comments