refactor(ngcc): move ClassSymbol
to become NgccClassSymbol
(#32539)
PR Close #32539
This commit is contained in:
@ -70,12 +70,6 @@ export function isDecoratorIdentifier(exp: ts.Expression): exp is DecoratorIdent
|
||||
*/
|
||||
export type ClassDeclaration<T extends ts.Declaration = ts.Declaration> = T & {name: ts.Identifier};
|
||||
|
||||
/**
|
||||
* The symbol corresponding to a "class" declaration. I.e. a `ts.Symbol` whose `valueDeclaration` is
|
||||
* a `ClassDeclaration`.
|
||||
*/
|
||||
export type ClassSymbol = ts.Symbol & {valueDeclaration: ClassDeclaration};
|
||||
|
||||
/**
|
||||
* An enumeration of possible kinds of class members.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user