UNPKG

@progress/sitefinity-widget-designers-sdk

Version:

This package aims to create a parity for widget designer generation similar to the [autogenerated widget designers](https://www.progress.com/documentation/sitefinity-cms/next.js-autogenerated-field-types) in Sitefinity. Due to some limitations in Typescri

62 lines (61 loc) 1.3 kB
export declare class LinkModel { href: string | null; sfref: string | null; id: string | null; text: string | null; target: string | null; queryParams: string | null; anchor: string | null; tooltip: string | null; type: string | null; classList: string[] | null; attributes: { [key: string]: string; } | null; /** * @deprecated Use href instead */ Href: string | null; /** * @deprecated Use sfref instead */ Sfref: string | null; /** * @deprecated Use id instead */ Id: string | null; /** * @deprecated Use text instead */ Text: string | null; /** * @deprecated Use target instead */ Target: string | null; /** * @deprecated Use queryParams instead */ QueryParams: string | null; /** * @deprecated Use anchor instead */ Anchor: string | null; /** * @deprecated Use tooltip instead */ Tooltip: string | null; /** * @deprecated Use type instead */ Type: string | null; /** * @deprecated Use classList instead */ ClassList: string[] | null; /** * @deprecated Use attributes instead */ Attributes: { [key: string]: string; } | null; }