Fork link-text module

This commit is contained in:
Daniel Gasienica 2018-04-10 13:33:46 -04:00
parent d9381c543e
commit f04c65088b
4 changed files with 57 additions and 7 deletions

9
js/modules/link_text.d.ts vendored Normal file
View file

@ -0,0 +1,9 @@
declare namespace LinkText {
type Attributes = {
[key: string]: string;
}
}
declare function linkText(value: string, attributes: LinkText.Attributes): string;
export = linkText;