mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
* feat: Move workspace proxy page to deployment options Workspace proxy settings page is now an admin feature * WorkspaceProxy response extends region
21 lines
424 B
TypeScript
21 lines
424 B
TypeScript
// Code generated by 'make site/src/api/typesGenerated.ts'. DO NOT EDIT.
|
|
|
|
// From codersdk/genericmap.go
|
|
export interface Buzz {
|
|
readonly foo: Foo
|
|
readonly bazz: string
|
|
}
|
|
|
|
// From codersdk/genericmap.go
|
|
export interface Foo {
|
|
readonly bar: string
|
|
}
|
|
|
|
// From codersdk/genericmap.go
|
|
export interface FooBuzz<R extends Custom> {
|
|
readonly something: R[]
|
|
}
|
|
|
|
// From codersdk/genericmap.go
|
|
export type Custom = Foo | Buzz
|