Skip to content

Type Alias: ResolveSource

ts
type ResolveSource = (entry) => 
  | {
  href: string;
  label?: string;
}
  | undefined;

Defined in: emitters/markdown/src/render.ts:20

Resolve a record to a source link (file/line), for the "Source" line. Supplied by the caller.

Parameters

entry

CssDocEntry

Returns

| { href: string; label?: string; } | undefined

Released under the MIT License