fix(core): update

This commit is contained in:
2024-05-30 18:57:10 +02:00
parent 8329bb902f
commit 993c4e07bc
5 changed files with 3 additions and 9 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartguard',
version: '3.0.0',
version: '3.0.1',
description: 'A TypeScript library for creating and managing validation guards, aiding in data validation and security checks.'
}

View File

@ -16,8 +16,4 @@ export class Guard<T> {
const result = await this.guardFunction(dataArg);
return result;
}
public async execForTR() {
}
}

View File

@ -1,4 +1,6 @@
// @push.rocks scope
import * as smartpromise from '@push.rocks/smartpromise';
// pushrocks scope
export { smartpromise };