UNPKG

@ckeditor/typedoc-plugins

Version:
11 lines (10 loc) 542 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md. */ import type { Context, DeclarationReflection, SignatureReflection } from "typedoc"; /** * Checks if the provided identifier targets an existing reflection within the whole project and returns found reflection. * If the target is not found, returns null. */ export declare function getTarget(context: Context, reflection: DeclarationReflection, identifier: string): DeclarationReflection | SignatureReflection | null;