fix(core): update

This commit is contained in:
Philipp Kunz 2023-04-17 13:48:32 +02:00
parent d5d896a91e
commit 847f3a4f1c
5 changed files with 5 additions and 7 deletions

View File

@ -39,4 +39,4 @@
"browserslist": [
"last 1 chrome versions"
]
}
}

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@uptime.link/interfaces',
version: '2.0.14',
version: '2.0.15',
description: 'TypeScript interface for the uptime.link API and modules'
}

View File

@ -25,4 +25,4 @@ export interface IDomainSnapshot {
serverUrl: string;
content: string;
}[];
}
}

View File

@ -7,6 +7,4 @@ export * from './status.js';
import * as checks from './checks/index.js';
export {
checks
}
export { checks };

View File

@ -12,5 +12,5 @@ export interface IReq_PerformDomainSnapshot
};
response: {
domainSnapshot: IDomainSnapshot;
}
};
}