We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0427fdb + 8e07ff0 commit d477db6Copy full SHA for d477db6
src/types.ts
@@ -14,3 +14,9 @@ export interface KubernetesListObject<T extends KubernetesObject> {
14
}
15
16
export type IntOrString = number | string;
17
+
18
+export class V1MicroTime extends Date {
19
+ public toISOString(): string {
20
+ return super.toISOString().slice(0, -1) + '000Z';
21
+ }
22
+}
0 commit comments