UNPKG

@lando/platformsh

Version:

A Lando plugin that provides a tight integration with Platform.sh.

25 lines (20 loc) 408 B
declare module slugify { type ExtendArgs = { [key: string]: any; } export function extend (args: ExtendArgs): void; } declare function slugify( string: string, options?: | { replacement?: string; remove?: RegExp; lower?: boolean; strict?: boolean; locale?: string; trim?: boolean; } | string, ): string; export default slugify;