Browse Source

add config interface to theme shared testing module

pull/6966/head
Arman Ozak 6 years ago
parent
commit
e869ac11df
  1. 5
      npm/ng-packs/packages/theme-shared/testing/src/lib/models/config.ts
  2. 1
      npm/ng-packs/packages/theme-shared/testing/src/lib/models/index.ts

5
npm/ng-packs/packages/theme-shared/testing/src/lib/models/config.ts

@ -0,0 +1,5 @@
import { Validation } from '@ngx-validate/core';
export interface Config {
validation?: Partial<Validation.Config>;
}

1
npm/ng-packs/packages/theme-shared/testing/src/lib/models/index.ts

@ -0,0 +1 @@
export * from './config';
Loading…
Cancel
Save