UNPKG

@ckeditor/typedoc-plugins

Version:
11 lines (10 loc) 500 B
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md. */ import type { Context, DeclarationReflection } from "typedoc"; /** * Checks if the name (identifier) that is provided for a tag, points to an existing reflection in the whole project. * The identifier can be either a relative or an absolute one. */ export declare function isIdentifierValid(context: Context, reflection: DeclarationReflection, identifier?: string): boolean;