mirror of https://github.com/rancher/dashboard.git
12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import { GKENetwork, GKESubnetwork } from '@shell/components/google/types/gcp';
|
|
|
|
export interface GKENetworkOption extends Partial<GKENetwork>{
|
|
label: string,
|
|
kind?: string,
|
|
disabled?: boolean,
|
|
}
|
|
|
|
export interface GKESubnetworkOption extends Partial<GKESubnetwork>{
|
|
label: string,
|
|
}
|