source-graph-stream-client
    Preparing search index...

    Type Alias ContentSearchResult

    type ContentSearchResult = {
        branches: string[];
        commit: string;
        hunks?: unknown;
        language: string;
        lineMatches: {
            line: string;
            lineNumber: number;
            offsetAndLengths: [number, number][];
        }[];
        path: string;
        repoLastFetched: string;
        repository: string;
        repositoryID: number;
        repoStars?: number;
        type: "content";
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    branches: string[]
    commit: string
    hunks?: unknown
    language: string
    lineMatches: {
        line: string;
        lineNumber: number;
        offsetAndLengths: [number, number][];
    }[]
    path: string
    repoLastFetched: string
    repository: string
    repositoryID: number
    repoStars?: number
    type: "content"