@willwade/aac-processors
    Preparing search index...

    Interface SymbolReport

    Generate a symbol extraction report Useful for identifying which symbols need manual extraction

    interface SymbolReport {
        byLibrary: Record<string, number>;
        embedded: number;
        missingSymbols: {
            attribution?: string;
            library: string;
            license?: string;
            path: string;
            reference: string;
        }[];
        notFound: number;
        symbolLibraries: number;
        total: number;
    }
    Index

    Properties

    byLibrary: Record<string, number>
    embedded: number
    missingSymbols: {
        attribution?: string;
        library: string;
        license?: string;
        path: string;
        reference: string;
    }[]
    notFound: number
    symbolLibraries: number
    total: number