Skip to content

Commit

Permalink
Move type definition so file build order doesnt matter
Browse files Browse the repository at this point in the history
  • Loading branch information
weswigham committed Apr 11, 2018
1 parent 0d0931d commit 7924e42
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/compiler/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3221,6 +3221,14 @@ namespace ts {
errorModuleName?: string; // If the symbol is not visible from module, module's name
}

/* @internal */
export interface AllAccessorDeclarations {
firstAccessor: AccessorDeclaration;
secondAccessor: AccessorDeclaration;
getAccessor: AccessorDeclaration;
setAccessor: AccessorDeclaration;
}

/** Indicates how to serialize the name for a TypeReferenceNode when emitting decorator metadata */
/* @internal */
export enum TypeReferenceSerializationKind {
Expand Down

0 comments on commit 7924e42

Please sign in to comment.