@code-to-json/core
Version:
[](https://travis-ci.org/code-to-json/code-to-json) [](https://d
16 lines • 597 B
TypeScript
import { Ref } from '@code-to-json/utils';
export declare type SymbolRef = Ref<'symbol'>;
export declare type DeclarationRef = Ref<'declaration'>;
export declare type NodeRef = Ref<'node'>;
export declare type TypeRef = Ref<'type'>;
export declare type SourceFileRef = Ref<'sourceFile'>;
declare module '@code-to-json/utils/lib/src/deferred-processing/ref-registry' {
export default interface RefRegistry {
symbol: SymbolRef;
node: NodeRef;
declaration: DeclarationRef;
type: TypeRef;
sourceFile: SourceFileRef;
}
}
//# sourceMappingURL=ref.d.ts.map