@suluk/core - v0.1.13
    Preparing search index...

    Interface SulukSource

    A stable, symbolic pointer back to the authored source an element was projected from (advisory provenance).

    interface SulukSource {
        file: string;
        symbol: string;
        kind?: string;
    }
    Index

    Properties

    Properties

    file: string

    repo-relative path to the authoring file (e.g. "src/server/schema.ts"). NOT a line number.

    symbol: string

    the exported symbol within that file (e.g. a Drizzle table export, or the operation's name).

    kind?: string

    what kind of authored thing it is — "drizzle-table" | "operation" | "better-auth" | … (advisory label).