diff --git a/projects/ng-kit/src/lib/types/id-type.ts b/projects/ng-kit/src/lib/types/id-type.ts deleted file mode 100644 index 7227f41..0000000 --- a/projects/ng-kit/src/lib/types/id-type.ts +++ /dev/null @@ -1,3 +0,0 @@ -export interface IdType { - id: number; -} diff --git a/projects/ng-kit/src/public-api.ts b/projects/ng-kit/src/public-api.ts index f8fea25..4418fcf 100644 --- a/projects/ng-kit/src/public-api.ts +++ b/projects/ng-kit/src/public-api.ts @@ -1,3 +1,5 @@ +import { ProgressState } from './lib/types/progress-state'; + export * from './lib/components/alert/alert.component'; export * from './lib/components/spinner/spinner.component'; export * from './lib/components/ngx-spinner/ngx-spinner.service'; @@ -37,3 +39,6 @@ export * from './lib/services/mat-snack-bar.service'; // Export progress state export * from './lib/util/progress-util'; + +// Export the ProgressState type +export type { ProgressState };