mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Adding type definition for slackify-html (https://github.com/mrq-cz/slackify-html) * Fixed name of test file
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
// Type definitions for slackify-html v1.0.1
|
|
// Project: https://github.com/mrq-cz/slackify-html
|
|
// Definitions by: Scott Rippee <https://github.com/hypexr>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module "slackify-html" {
|
|
function slackify(html : string) : string;
|
|
export = slackify;
|
|
}
|