mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-29 04:20:00 +00:00

adds mirage model+factory for compliance suggestion updates gitignore: removes typings. adds environment.d.ts declaration file for config/environment. adds unit test for datasets-test. adds extracted datasets api file updates destroy app test helper updates compliance component to work with modified api from compliance api: removes isSubject, adds securityClassification updates uploaded compliance shape validation. updates the dataset route adds typescript files to prettier linting updates gitignore with vscode
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
export default config;
|
|
|
|
/**
|
|
* Type declarations for
|
|
* import config from './config/environment'
|
|
*
|
|
* For now these need to be managed by the developer
|
|
* since different ember addons can materialize new entries.
|
|
*/
|
|
declare namespace config {
|
|
export const environment: any;
|
|
export const modulePrefix: string;
|
|
export const podModulePrefix: string;
|
|
export const locationType: string;
|
|
}
|