Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
61b6835b31 | |||
48c65d726b |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "4.0.48",
|
||||
"version": "4.0.49",
|
||||
"private": false,
|
||||
"description": "common classes for TypeScript",
|
||||
"main": "dist_ts/index.js",
|
||||
|
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@tsclass/tsclass',
|
||||
version: '4.0.48',
|
||||
version: '4.0.49',
|
||||
description: 'common classes for TypeScript'
|
||||
}
|
||||
|
@ -25,10 +25,13 @@ import * as network from './network/index.js';
|
||||
// SaaS
|
||||
import * as saas from './saas/index.js';
|
||||
|
||||
// Storage
|
||||
import * as storage from './storage/index.js';
|
||||
|
||||
// Website
|
||||
import * as website from './website/index.js';
|
||||
|
||||
export { business, container, code, database, finance, content, general, network, saas, website };
|
||||
export { business, container, code, database, finance, content, general, network, saas, storage, website };
|
||||
|
||||
import type * as typeFest from 'type-fest';
|
||||
import * as typeFestOwn from './typefest.own.js';
|
||||
|
7
ts/storage/index.ts
Normal file
7
ts/storage/index.ts
Normal file
@ -0,0 +1,7 @@
|
||||
export interface IS3Descriptor {
|
||||
endpoint: string;
|
||||
port?: number;
|
||||
useSsl?: boolean;
|
||||
accessKey: string;
|
||||
accessSecret: string;
|
||||
}
|
Reference in New Issue
Block a user