mirror of https://github.com/halo-dev/halo-admin
parent
c97a3c8836
commit
36e3cd92c3
@ -0,0 +1,19 @@
|
||||
export interface Metadata {
|
||||
name: string;
|
||||
labels?: {
|
||||
[key: string]: string | null;
|
||||
} | null;
|
||||
annotations?: {
|
||||
[key: string]: string | null;
|
||||
} | null;
|
||||
version?: number | null;
|
||||
creationTimestamp?: string | null;
|
||||
deletionTimestamp?: string | null;
|
||||
}
|
||||
|
||||
export interface Extension<T> {
|
||||
spec?: T;
|
||||
apiVersion: string;
|
||||
kind: string;
|
||||
metadata: Metadata;
|
||||
}
|
Loading…
Reference in new issue