Skip to content
Snippets Groups Projects
Commit 1d44059c authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

Merge branch 'gmm' into 'main'

add more gmm group types

See merge request !229
parents 287c88c0 e72ec87d
No related branches found
No related tags found
1 merge request!229add more gmm group types
Pipeline #471566 passed
......@@ -26,13 +26,16 @@ export enum GmmType {
SUBDUCTION_SLAB = 'SUBDUCTION_SLAB',
}
enum Volcanic {
export enum GmmGroupType {
ALL = 'ALL',
ACTIVE_CRUST = 'ACTIVE_CRUST',
STABLE_CRUST = 'STABLE_CRUST',
SUBDUCTION_INTERFACE = 'SUBDUCTION_INTERFACE',
SUBDUCTION_SLAB = 'SUBDUCTION_SLAB',
VOLCANIC = 'VOLCANIC',
PUERTO_RICO = 'PUERTO_RICO',
}
export const GmmGroupType = {...GmmType, ...Volcanic};
export type GmmGroupType = GmmType | Volcanic;
/**
* Gmm usage response in Response object.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment