Type Alias: SlugOf

type SlugOf<TName extends CollectionName = CollectionName> = TName extends unknown ? string : never;

Defined in: content.ts:26

A slug in the named collection, or in any collection. The generated types narrow it to the slugs that exist.

Example

const slug: SlugOf<"posts"> = "hello-world";