7 lines
171 B
TypeScript
7 lines
171 B
TypeScript
interface Options {
|
|
trailing_index?: boolean;
|
|
trailing_html?: boolean;
|
|
}
|
|
declare function prettyUrls(url: string, options?: Options): string;
|
|
export = prettyUrls;
|