mirror of https://github.com/rancher/dashboard.git
23 lines
391 B
TypeScript
23 lines
391 B
TypeScript
|
|
export interface SchemaAttributeColumn {
|
|
description: string,
|
|
field: string,
|
|
format: string,
|
|
name: string,
|
|
priority: number,
|
|
type: string,
|
|
}
|
|
|
|
export interface SchemaAttribute {
|
|
columns: SchemaAttributeColumn[],
|
|
namespaced: boolean
|
|
}
|
|
|
|
/**
|
|
* At some point this will be properly typed, until then...
|
|
*/
|
|
export interface Schema {
|
|
id: string,
|
|
attributes: SchemaAttribute
|
|
}
|