mirror of https://github.com/rancher/dashboard.git
19 lines
358 B
JavaScript
19 lines
358 B
JavaScript
export const COLLECTION_TYPES = {
|
|
array: 'array',
|
|
map: 'map',
|
|
};
|
|
|
|
export const PRIMITIVE_TYPES = {
|
|
string: 'string',
|
|
multiline: 'multiline',
|
|
masked: 'masked',
|
|
password: 'password',
|
|
float: 'float',
|
|
int: 'int',
|
|
date: 'date',
|
|
blob: 'blob',
|
|
boolean: 'boolean',
|
|
json: 'json',
|
|
version: 'version',
|
|
};
|