Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
6366b4f990 | |||
a3e147f946 |
@ -1,5 +1,11 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-10 - 4.3.0 - feat(website)
|
||||||
|
Added new ILink interface to the website module.
|
||||||
|
|
||||||
|
- Introduced ILink interface with properties like url, text, description, icon, and target.
|
||||||
|
- Updated ts/website/index.ts to export the new link interface.
|
||||||
|
|
||||||
## 2024-12-11 - 4.2.0 - feat(dependencies)
|
## 2024-12-11 - 4.2.0 - feat(dependencies)
|
||||||
Update dependencies and enhance code documentation
|
Update dependencies and enhance code documentation
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@tsclass/tsclass",
|
"name": "@tsclass/tsclass",
|
||||||
"version": "4.2.0",
|
"version": "4.3.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
"description": "Provides TypeScript definitions for various business, financial, networking, content, and other common classes.",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@tsclass/tsclass',
|
name: '@tsclass/tsclass',
|
||||||
version: '4.2.0',
|
version: '4.3.0',
|
||||||
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
description: 'Provides TypeScript definitions for various business, financial, networking, content, and other common classes.'
|
||||||
}
|
}
|
||||||
|
@ -1 +1,2 @@
|
|||||||
|
export * from './link.js';
|
||||||
export * from './menuitem.js';
|
export * from './menuitem.js';
|
||||||
|
7
ts/website/link.ts
Normal file
7
ts/website/link.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export interface ILink {
|
||||||
|
url: string;
|
||||||
|
text?: string;
|
||||||
|
description?: string;
|
||||||
|
icon?: string;
|
||||||
|
target?: '_blank' | '_self' | '_parent' | '_top';
|
||||||
|
}
|
Reference in New Issue
Block a user