Files
DefinitelyTyped/slug/index.d.ts
Mohamed Hegazy de1d13bd54 Add new packages (#13578)
* Add xstream

* Add bigi

* Add uuid-js

* Add user-home

* Add strip-bom

* Add strip-ansi

* Add slug

* Add safe-regex

* Add react-recaptcha

* Add is-absolute-url

* Add is-archive

* Add is-compressed

* Add is-relative-url

* add is-root-path

* Add is-root

* Add is-text-path

* add os-homedir

* Add os-tmpdir

* Add path-is-absolute

* Add pad

* Add number-is-nan

* Add node-hid

* Add is-finite

* is-path-incwd

* Add indent-string

* Add cpy

* Add camelcase-keys

* Add blacklist

* add http-codes

* clamp-js

* Add checkstyle-formatter

* Add currency-formatter

* Add multi-typeof

* Add intl-messageformat

* Add coinstring

* Add ecurve

* Add bitcoinjs-lib

* Add deep-freeze

* Add fuxxaldrin

* Add react-body-classname

* Add react-highlight-words

* Update headers

* Fix lint errors

* remove xstream

* Code review comments

* Remove clamp-js in favour of https://github.com/DefinitelyTyped/DefinitelyTyped/pull/13527
2016-12-29 12:34:20 -08:00

35 lines
819 B
TypeScript

// Type definitions for slug 0.9
// Project: https://github.com/dodo/node-slug
// Definitions by: Mohamed Hegazy <https://github.com/mhegazy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = slug;
interface CharMap {
[x: string]: string;
}
interface Mode {
charmap?: CharMap| null;
lower?: boolean| null;
multicharmap?: CharMap| null;
remove?: RegExp| null;
replacement?: string | null;
symbols?: boolean| null;
}
declare function slug(string: string, opts?: Mode | string): string;
declare namespace slug {
const charmap: CharMap;
const defaults: {
charmap: CharMap;
mode: string;
modes: {
pretty: Mode;
rfc3986: Mode;
};
multicharmap: CharMap;
};
const multicharmap: CharMap;
}