Skip to content

Commit

Permalink
chore: export types for security module
Browse files Browse the repository at this point in the history
  • Loading branch information
thisislawatts committed Sep 10, 2022
1 parent 818ee65 commit 72ebab3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export type { GenderType, NameModule, SexType } from './modules/name';
export type { PhoneModule } from './modules/phone';
export type { RandomModule } from './modules/random';
export type { ChemicalElement, ScienceModule, Unit } from './modules/science';
export type { Cvss, SecurityModule, SeverityRating } from './modules/security';
export type { SystemModule } from './modules/system';
export type { UniqueModule } from './modules/unique';
export type { VehicleModule } from './modules/vehicle';
Expand Down
2 changes: 1 addition & 1 deletion src/modules/security/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface Cvss {
/**
* Possible textual rating definitions for a CVSS identifier
*/
type SeverityRating = 'none' | 'low' | 'medium' | 'high' | 'critical';
export type SeverityRating = 'none' | 'low' | 'medium' | 'high' | 'critical';

/**
* Module to generate security related entries.
Expand Down

0 comments on commit 72ebab3

Please sign in to comment.