9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
declare namespace LinkText {
|
|
type Attributes = {
|
|
[key: string]: string;
|
|
}
|
|
}
|
|
|
|
declare function linkText(value: string, attributes: LinkText.Attributes): string;
|
|
|
|
export = linkText;
|