/** * A URL-safe slug: lowercase ASCII letters, digits, and hyphens. * Must start and end with an alphanumeric character. * Example: `my-cool-theme`, `dark-mode-2` */ export type Slug = string & { __brand: 'Slug'; }; //# sourceMappingURL=Slug.d.ts.map