add az table module #5

Merged
noahspannbauer merged 3 commits from feature/3-add-az-table-module into main 2024-08-11 19:43:51 -04:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit dbe79d5e1b - Show all commits

View File

@@ -4,16 +4,16 @@ import { TableOptions } from './az-table.interface';
import { TABLE_OPTIONS } from './az-table.constants';
@Module({})
export class TablesModule {
export class TableModule {
static register(options: TableOptions): DynamicModule {
return {
module: TablesModule,
module: TableModule,
providers: [
{
provide: TABLE_OPTIONS,
useValue: options
},
TablesModule
TableModule
],
exports: [TableService]
}

View File

@@ -1,6 +1,6 @@
{
"name": "@noahspan/noahspan-modules",
"version": "0.3.5",
"version": "0.3.7",
"description": "",
"author": "",
"license": "UNLICENSED",