mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 18:29:06 +00:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
declare namespace LinkText {
|
|
type Attributes = {
|
|
[key: string]: string;
|
|
}
|
|
}
|
|
|
|
declare function linkText(value: string, attributes: LinkText.Attributes): string;
|
|
|
|
export = linkText;
|