HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/design.system/node_modules/@microsoft/api-extractor/lib/collector/ApiItemMetadata.d.ts
import type * as tsdoc from '@microsoft/tsdoc';
import type { ReleaseTag } from '@microsoft/api-extractor-model';
import { VisitorState } from './VisitorState';
/**
 * Constructor parameters for `ApiItemMetadata`.
 */
export interface IApiItemMetadataOptions {
    declaredReleaseTag: ReleaseTag;
    effectiveReleaseTag: ReleaseTag;
    releaseTagSameAsParent: boolean;
    isEventProperty: boolean;
    isOverride: boolean;
    isSealed: boolean;
    isVirtual: boolean;
    isPreapproved: boolean;
}
/**
 * Stores the Collector's additional analysis for an `AstDeclaration`.  This object is assigned to
 * `AstDeclaration.apiItemMetadata` but consumers must always obtain it by calling `Collector.fetchApiItemMetadata()`.
 *
 * @remarks
 * Note that ancillary declarations share their `ApiItemMetadata` with the main declaration,
 * whereas a separate `DeclarationMetadata` object is created for each declaration.
 *
 * Consider this example:
 * ```ts
 * export declare class A {
 *   get b(): string;
 *   set b(value: string);
 * }
 * export declare namespace A { }
 * ```
 *
 * In this example, there are two "symbols": `A` and `b`
 *
 * There are four "declarations": `A` class, `A` namespace, `b` getter, `b` setter
 *
 * There are three "API items": `A` class, `A` namespace, `b` property.  The property getter is the main declaration
 * for `b`, and the setter is the "ancillary" declaration.
 */
export declare class ApiItemMetadata {
    /**
     * This is the release tag that was explicitly specified in the original doc comment, if any.
     */
    readonly declaredReleaseTag: ReleaseTag;
    /**
     * The "effective" release tag is a normalized value that is based on `declaredReleaseTag`,
     * but may be inherited from a parent, or corrected if the declared value was somehow invalid.
     * When actually trimming .d.ts files or generating docs, API Extractor uses the "effective" value
     * instead of the "declared" value.
     */
    readonly effectiveReleaseTag: ReleaseTag;
    readonly releaseTagSameAsParent: boolean;
    readonly isEventProperty: boolean;
    readonly isOverride: boolean;
    readonly isSealed: boolean;
    readonly isVirtual: boolean;
    readonly isPreapproved: boolean;
    /**
     * This is the TSDoc comment for the declaration.  It may be modified (or constructed artificially) by
     * the DocCommentEnhancer.
     */
    tsdocComment: tsdoc.DocComment | undefined;
    /**
     * Tracks whether or not the associated API item is known to be missing sufficient documentation.
     *
     * @remarks
     *
     * An "undocumented" item is one whose TSDoc comment which either does not contain a summary comment block, or
     * has an `@inheritDoc` tag that resolves to another "undocumented" API member.
     *
     * If there is any ambiguity (e.g. if an `@inheritDoc` comment points to an external API member, whose documentation,
     * we can't parse), "undocumented" will be `false`.
     *
     * @remarks Assigned by {@link DocCommentEnhancer}.
     */
    undocumented: boolean;
    docCommentEnhancerVisitorState: VisitorState;
    constructor(options: IApiItemMetadataOptions);
}
//# sourceMappingURL=ApiItemMetadata.d.ts.map