Documentation
    Preparing search index...

    Interface Declaration<TShape>

    Represents a declaration emitted by an extractor plugin.

    interface Declaration<TShape = Record<string, unknown>> {
        id: string;
        kind: string;
        location: { file: string; name: string };
        shape: TShape;
    }

    Type Parameters

    • TShape = Record<string, unknown>
    Index

    Properties

    Properties

    id: string
    kind: string
    location: { file: string; name: string }
    shape: TShape