signal-desktop/js/modules/link_text.d.ts

10 lines
188 B
TypeScript
Raw Normal View History

2018-04-10 17:33:46 +00:00
declare namespace LinkText {
type Attributes = {
[key: string]: string;
}
}
declare function linkText(value: string, attributes: LinkText.Attributes): string;
export = linkText;