add-path-suffix.d.ts 258 B

123456
  1. /**
  2. * Similarly to `addPathPrefix`, this function adds a suffix at the end on the
  3. * provided path. It also works only for paths ensuring the argument starts
  4. * with a slash.
  5. */
  6. export declare function addPathSuffix(path: string, suffix?: string): string;