-
Notifications
You must be signed in to change notification settings - Fork 412
Expand file tree
/
Copy pathtygo.yaml
More file actions
30 lines (30 loc) · 996 Bytes
/
Copy pathtygo.yaml
File metadata and controls
30 lines (30 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
packages:
- path: "github.com/tilt-dev/tilt/pkg/webview"
output_path: "web/src/webview.d.ts"
frontmatter: |
import { UISession, UIResource, UIButton, Cluster } from "./core";
type_mappings:
metav1.MicroTime: "string"
metav1.Time: "string"
v1alpha1.UISession: "UISession"
v1alpha1.UIResource: "UIResource"
v1alpha1.UIButton: "UIButton"
v1alpha1.Cluster: "Cluster"
- path: "github.com/tilt-dev/tilt/pkg/apis/core/v1alpha1"
output_path: "web/src/core.d.ts"
frontmatter: |
export interface ObjectMeta {
name: string;
namespace: string;
resourceVersion?: string;
uid: string;
labels?: { [key: string]: string };
annotations?: { [key: string]: string };
creationTimestamp?: string;
deletionTimestamp?: string;
}
type_mappings:
metav1.MicroTime: "string"
metav1.Time: "string"
metav1.ListMeta: "null"
metav1.ObjectMeta: "ObjectMeta"