mirror of
https://github.com/coder/coder.git
synced 2026-06-05 05:58:20 +00:00
077e594856
switch to guts for typescript type generation omitempty vs null must now be explicit
14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
// Code generated by 'guts'. DO NOT EDIT.
|
|
|
|
// From codersdk/genericslice.go
|
|
export interface Bar {
|
|
readonly Bar: string;
|
|
}
|
|
|
|
// From codersdk/genericslice.go
|
|
// biome-ignore lint lint/complexity/noUselessTypeConstraint: golang does 'any' for generics, typescript does not like it
|
|
export interface Foo<R extends any> {
|
|
readonly Slice: readonly R[];
|
|
readonly TwoD: readonly R[][];
|
|
}
|