@ckeditor/typedoc-plugins
Version:
Various TypeDoc plugins developed by the CKEditor 5 team.
11 lines (10 loc) • 542 B
TypeScript
/**
* @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;