diff --git a/ts/@types/link-text/index.d.ts b/ts/@types/link-text/index.d.ts new file mode 100644 index 000000000000..9663edce6012 --- /dev/null +++ b/ts/@types/link-text/index.d.ts @@ -0,0 +1,6 @@ +declare module 'link-text' { + type Attributes = { + [key: string]: string; + } + export default function (value: string, attributes: Attributes): string +}