Files
Signal-Desktop/js/modules/link_text.d.ts
2018-04-11 16:36:42 -04:00

10 lines
188 B
TypeScript

declare namespace LinkText {
type Attributes = {
[key: string]: string;
}
}
declare function linkText(value: string, attributes: LinkText.Attributes): string;
export = linkText;