Files
coder/scripts/apitypings/testdata/enums/enums.ts
T
Steven Masley 13bb4492c9 chore: remove apitypings specific go.mod (#15899)
Keeping the deps in sync between this and the primary go.mod is
a headache. 


adds Tailscale generated types
2024-12-18 07:18:31 -06:00

10 lines
251 B
TypeScript

// Code generated by 'guts'. DO NOT EDIT.
// From codersdk/enums.go
export type Enum = "bar" | "baz" | "foo" | "qux";
// From codersdk/enums.go
export type EnumSliceType = readonly Enum[];
export const Enums: Enum[] = ["bar", "baz", "foo", "qux"];