remix/route-pattern/match · Type

View Source

MatchParamMeta

Summary

Metadata describing where a matched param appeared in a normalized URL part.

Signature

type MatchParamMeta = {
  begin: number
  end: number
  name: string
  type: ':' | '*'
  value: string
}